终于开始学习怎么用这个可爱的章鱼喵喵了(octocat)。嗨森!
本文只关于最基础的操作。
Github
和 Git bash
。github
账户,创建 SHH key
。同一个操作可以在Github,Git Bash或者网页上完成。目前不会所有的地方都完成,仅够完成我的工作流程:
change
进行commit
,然后sync
。添加
git add some.txt
git commit -m
git push
如果没有commit直接push,是不会同步的
删除一个文件夹
rm -rf dir
git add -A
git commit -m 'remove dir'
git push origin master
放到缓冲区,相当于在删了,在自己的repo里面看不到了。
git rm -r --cached some-directory
git commit -m "Remove the now ignored directory some-directory"
原文:http://www.cnblogs.com/Xeonilian/p/7873244.html