閱讀364 返回首頁    go 阿裏雲 go 技術社區[雲棲]


git hub update command memo

Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:czjxy881/pintos.git
git push -u origin master

Push an existing repository from the command line

git remote add origin git@github.com:czjxy881/pintos.git
git push -u origin master

最後更新:2017-04-03 14:54:23

  上一篇:go 運用OpenGL ES 2.0實現各種各樣圖像濾鏡(圖像處理)效果,多達50多種效果。
  下一篇:go 劍指Offer之鏈表中倒數第k個結點