阅读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个结点