Git cheat sheet: Difference between revisions

From misc notes
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
cd hoge
cd hoge
git init
git init
touch README
touch README.md
git add README
git add README.md
git commit -m 'first commit'
git commit -m 'first commit'
git remote add origin git@github.com:fuga/hoge.git
git remote add origin git@github.com:fuga/hoge.git
git push -u origin master
git push -u origin master


編集後
git add README.md
git commit -m 'message here'
git push

rename
git mv README.md README
git commit -m 'message here'
git push

Revision as of 07:08, 31 May 2012

github で repository つくったら手順がでてくる

 mkdir hoge
 cd hoge
 git init
 touch README.md
 git add README.md
 git commit -m 'first commit'
 git remote add origin git@github.com:fuga/hoge.git
 git push -u origin master


編集後

git add README.md
git commit -m 'message here'
git push

rename

git mv README.md README
git commit -m 'message here'
git push