Difference between revisions of "Git"

From Hack Sphere Labs Wiki
Jump to: navigation, search
(Created page with "*http://getgitorious.com/ *http://stackoverflow.com/questions/5507489/git-server-like-github *http://www.vogella.com/articles/Git/article.html *http://git-scm.com/about *http:...")
 
Line 1: Line 1:
 +
*https://help.github.com/articles/set-up-git
 +
 +
=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
 +
=Fork=
 +
 +
 +
 +
 +
 +
 
*http://getgitorious.com/
 
*http://getgitorious.com/
 
*http://stackoverflow.com/questions/5507489/git-server-like-github
 
*http://stackoverflow.com/questions/5507489/git-server-like-github

Revision as of 01:14, 15 February 2014

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

Fork