7,275
edits
(ページの作成:「github で repository つくったら手順がでてくる」) |
No edit summary |
||
github で repository つくったら手順がでてくる
mkdir hoge
cd hoge
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin git@github.com:fuga/hoge.git
git push -u origin master
|