Github
Posted Xeonilian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Github相关的知识,希望对你有一定的参考价值。
终于开始学习怎么用这个可爱的章鱼喵喵了(octocat)。嗨森!
本文只关于最基础的操作。
前题条件(prerequisite)
- Windows 10 系统,安装
Github
和Git bash
。 - 注册
github
账户,创建SHH key
。
说明
同一个操作可以在Github,Git Bash或者网页上完成。目前不会所有的地方都完成,仅够完成我的工作流程:
Github用户端
- 本地在图形界面内完成了文件和文件夹操作。
- 在Github界面里面对每个
change
进行commit
,然后sync
。
Git bash
添加
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"
以上是关于Github的主要内容,如果未能解决你的问题,请参考以下文章
csharp C#代码片段 - 使类成为Singleton模式。 (C#4.0+)https://heiswayi.github.io/2016/simple-singleton-pattern-us