Created
September 17, 2010 22:59
-
-
Save rallygroup/585116 to your computer and use it in GitHub Desktop.
Git config script for setting defaults
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
git config --global user.name "Your Name" | |
git config --global user.email [email protected] | |
cd your_project_dir | |
git init | |
git remote add origin [email protected]:switchyard/ocp-litprep.git | |
git config branch.master.remote origin | |
git config branch.master.merge refs/heads/master | |
git pull |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment