Size: 225
Comment:
|
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:
!GitWeb
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