gitlab-org--gitlab-foss/doc/topics/git/troubleshooting_git.md

83 lines
2.6 KiB
Markdown
Raw Normal View History

# Troubleshooting Git
Sometimes things don't work the way they should or as you might expect when
2017-12-13 09:27:00 +00:00
you're using Git. Here are some tips on troubleshooting and resolving issues
with Git.
2017-12-13 09:27:00 +00:00
## Broken pipe errors on git push
2017-12-13 09:27:00 +00:00
'Broken pipe' errors can occur when attempting to push to a remote repository.
When pushing you will usually see:
```
Write failed: Broken pipe
fatal: The remote end hung up unexpectedly
```
2017-12-13 09:27:00 +00:00
To fix this issue, here are some possible solutions.
### Increase the POST buffer size in Git
2017-12-13 09:27:00 +00:00
**If pushing over HTTP**, you can try increasing the POST buffer size in Git's
configuration. Open a terminal and enter:
```sh
git config http.postBuffer 52428800
```
2017-12-13 09:27:00 +00:00
The value is specified in bytes, so in the above case the buffer size has been
set to 50MB. The default is 1MB.
2017-12-13 09:27:00 +00:00
### Check your SSH configuration
2017-12-13 09:27:00 +00:00
**If pushing over SSH**, first check your SSH configuration as 'Broken pipe'
errors can sometimes be caused by underlying issues with SSH (such as
authentication). Make sure that SSH is correctly configured by following the
instructions in the [SSH troubleshooting] docs.
2017-12-13 09:27:00 +00:00
There's another option where you can prevent session timeouts by configuring
SSH 'keep alive' either on the client or on the server (if you are a GitLab
admin and have access to the server).
2017-12-13 09:27:00 +00:00
NOTE: **Note:** configuring *both* the client and the server is unnecessary.
2017-12-13 09:27:00 +00:00
**To configure SSH on the client side**:
2017-12-13 09:27:00 +00:00
- On UNIX, edit `~/.ssh/config` (create the file if it doesnt exist) and
add or edit:
2017-12-13 09:27:00 +00:00
```
Host your-gitlab-instance-url.com
ServerAliveInterval 60
ServerAliveCountMax 5
```
2017-12-13 09:27:00 +00:00
- On Windows, if you are using PuTTY, go to your session properties, then
navigate to "Connection" and under "Sending of null packets to keep
session active", set "Seconds between keepalives (0 to turn off)" to `60`.
2017-12-13 09:27:00 +00:00
**To configure SSH on the server side**, edit `/etc/ssh/sshd_config` and add:
2017-12-13 09:27:00 +00:00
```
ClientAliveInterval 60
ClientAliveCountMax 5
```
2017-12-13 09:27:00 +00:00
### Running a git repack
2017-12-13 09:27:00 +00:00
**If 'pack-objects' type errors are also being displayed**, you can try to
run a `git repack` before attempting to push to the remote repository again:
```sh
git repack
git push
```
2017-12-13 09:27:00 +00:00
### Upgrade your Git client
2017-12-13 09:27:00 +00:00
In case you're running an older version of Git (< 2.9), consider upgrading
to >= 2.9 (see [Broken pipe when pushing to Git repository][Broken-Pipe]).
2017-12-13 09:27:00 +00:00
[SSH troubleshooting]: ../../ssh/README.md#troubleshooting "SSH Troubleshooting"
[Broken-Pipe]: https://stackoverflow.com/questions/19120120/broken-pipe-when-pushing-to-git-repository/36971469#36971469 "StackOverflow: 'Broken pipe when pushing to Git repository'"