Skip to content

Instantly share code, notes, and snippets.

@weeksdev
Last active March 9, 2016 15:19
Show Gist options
  • Save weeksdev/8600216 to your computer and use it in GitHub Desktop.
Save weeksdev/8600216 to your computer and use it in GitHub Desktop.
Basic Git Commands

###Read This http://rogerdudler.github.io/git-guide/

###Only Run First Time git config --global user.name "BLAH"
git config --global user.email "BLAH@BLAH.com"
git init

###Run Everytime git add -A
git commit -am "Reason For Commit"

###Only Run First Time git remote add origin http://yourface/repo.git

###Run Everytime git push origin master

@weeksdev
Copy link
Author

git config --global user.name "BLAH"
git config --global user.email "BLAH@BLAH.com"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment