标签:进一步 没有 常用 todo cache stage com 提交 选项
命令
# 1. 从无到有
> git init
# 2. 从远程拉去现有的仓库
> git clone <url>
命令
# 追踪所有新文件, gitignore 里的除外
> git add .
# 追踪单个文件
> git add <file>
> git rm --cached <file> > git rm -f <file>
https://git-scm.com/book/zh/v2/Git-%E5%9F%BA%E7%A1%80-%E8%AE%B0%E5%BD%95%E6%AF%8F%E6%AC%A1%E6%9B%B4%E6%96%B0%E5%88%B0%E4%BB%93%E5%BA%93
标签:进一步 没有 常用 todo cache stage com 提交 选项
原文地址:https://www.cnblogs.com/xy14/p/11104062.html