Last active
March 9, 2018 17:02
-
-
Save aliuosio/246fb8673de066ec5cc278f39ca2f5fd to your computer and use it in GitHub Desktop.
Useful Git Commnds
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
// Save Git Password for one year | |
git config --global credential.helper 'cache --timeout=31536000'; | |
// Ignore chmod | |
git config core.fileMode false; | |
// Set Username Global | |
git config --global user.name "Your Name" | |
// Set User Email | |
git config --global user.email [email protected] | |
git lfs install | |
// track for example all PSD Files | |
git lfs track "*.psd" | |
// Make sure .gitattributes is tracked | |
git add .gitattributes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment