Git

From Hack Sphere Labs Wiki
Revision as of 19:23, 15 February 2014 by Webdawg (talk | contribs) (Setup)

Jump to: navigation, search

Setup

https://github.com/repositories/new

git config --global user.name "webdawg"
git config --global user.email "webdawg@gmail.com"
git init
nano/touch README
git add README
git commit -m 'first commit'
git remote add origin https://github.com/webdawg/binary2twitter.git
git push origin master
git add --all
git commit -am "rest of the code push'
git push origin master

Fork