A good single page PDF git cheatsheet is available - git-cheatsheet.pdf
git config --global http.sslVerify false
If you are experiencing issues with Git/GitLab please check the following:
If you are getting an error 'send-pack: unexpected disconnect while reading sideband packet...'
it is usually due to large
files.
Make sure you are using a .gitignore file to exclude binaries, object code, build artifacts, video files etc. from
versioning. There is a collection of .gitignore file templates for many different dev environments available at:
https://github.com/github/gitignore
A good gitignore setup will prevent this type of issue and make your use of git/gitlab much quicker and more efficient. Pick
a template for your development environment as your starting point - they are available for C++, Java, Python, Unity, VisualStudio....
If you are still getting server disconnect errors it is usually due to large repositories. GitLab was designed for many small repositories usually under 1Gb in size and there can be significant performance issues with larger repos.
Change your Git remote URL from SSH to HTTPS with the git remote set-url command.
https://devconnected.com/how-to-change-git-remote-origin/
HTTPS handles large data transfers better than SSH. Though SSH is preferred where possible for additional security.
TIP: To avoid having to enter your password everytime with HTTPS you can store or caching your credentials for https.
See
How to fix git
always asking for user credentials