Differences between revisions 4 and 5
Revision 4 as of 2021-05-13 14:33:39
Size: 225
Comment:
Revision 5 as of 2021-12-29 03:51:24
Size: 658
Comment:
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
 * [[Git/Branches|GitBranches]]  * [[Git/Branches|Git Branches]]
Line 26: Line 26:
----



== Tips ==



=== Fatal error when cloning a remote repository ===

If git fails to clone a remote repository, possibly with one of the following error messages:

{{{
fatal: fetch-pack: invalid index-pack output
...
fatal: early EOF
fatal: index-pack failed
}}}

Then try a '''shallow clone''' first:

{{{
git clone --depth 1 https://example.com/repo.git
git fetch --unshallow
git pull --all
}}}

Git


Git Versioning System

See:


Web Interfaces

See:


Tips

Fatal error when cloning a remote repository

If git fails to clone a remote repository, possibly with one of the following error messages:

fatal: fetch-pack: invalid index-pack output
...
fatal: early EOF
fatal: index-pack failed

Then try a shallow clone first:

git clone --depth 1 https://example.com/repo.git
git fetch --unshallow
git pull --all


CategoryRicottone

Git (last edited 2025-01-29 15:37:43 by DominicRicottone)