Write the Code. Change the World.

7月 09

使用 git 可以使用 sourcetree 这些工具。方便查看以及提交等操作。可有时候还是没命令来的爽快。这里就记录下 git 常用的命令,免得每次都要去找。

git

三个工作区:
1. 工作目录
2. 暂存区域
3. git 仓库 (本地和远程)

四种文件状态:

  1. Untracked (未跟踪)
  2. Unmodified (未修改)
  3. Modified (已修改)
  4. Staged (已暂存)

常规操作

# 添加所有
git add -A
git add .

# 添加某个
git add xxx.md

# 撤销添加某个文件(变成已修改状态)
git reset HEAD xxx.md 

参考

https://cloud.tencent.com/developer/news/159103

https://my.oschina.net/pmos/blog/817191

https://www.cnblogs.com/lfxiao/p/9378763.html

[https://blog.csdn.net/hyupeng1006/article/details/82979258]
(https://blog.csdn.net/hyupeng1006/article/details/82979258)

https://www.liaoxuefeng.com/wiki/896043488029600/897013573512192

https://www.jianshu.com/p/c2ec5f06cf1a

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注