Last active
April 22, 2016 20:03
-
-
Save leodutra/ad82f4d9e86083b5901f to your computer and use it in GitHub Desktop.
Setup Git login, e-mail and password cache | sudo wget -q -O - https://gist.github.com/leodutra/ad82f4d9e86083b5901f/raw | sh -x -
This file contains 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
#!/bin/sh | |
git config --global credential.helper 'cache --timeout=3600' | |
git config --global user.name "Leo Dutra" | |
git config --global user.email "[email protected]" | |
echo 'git has been set for [email protected]' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment