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:...")
 
(Setup)
 
(3 intermediate revisions by the same user not shown)
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
 +
 +
git add --all
 +
git commit -am "rest of the code push'
 +
git push origin master
 +
 +
==links==
 +
*http://stackoverflow.com/questions/17743549/git-recursively-add-the-entire-folder
 +
 +
=Fork=
 +
*https://help.github.com/articles/fork-a-repo
 +
 +
=Notes=
 +
 
*http://getgitorious.com/
 
*http://getgitorious.com/
 
*http://stackoverflow.com/questions/5507489/git-server-like-github
 
*http://stackoverflow.com/questions/5507489/git-server-like-github

Latest revision as of 19:23, 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
git add --all
git commit -am "rest of the code push'
git push origin master

links

Fork

Notes