Last active
November 3, 2015 14:48
-
-
Save snarky/07005b25cda08d48edf0 to your computer and use it in GitHub Desktop.
GIT TIPS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Fetch all branches after un git clone single-branch | |
| $ git clone --single-branch <url> | |
| ... | |
| $ git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" | |
| $ git fetch origin | |
| $ export GIT_SSL_NO_VERIFY=1 | |
| $ git config http.postBuffer 524288000 | |
| $ git config core.fileMode false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment