1、启动git命令输入
在想要建立仓库,建议的方式是在文件夹中右键单击,选择git bash here
2、初始化仓库命令:git init
3、查看仓库状态:git status
4、更新仓库特定文件:git add xxx
5、更新仓库所有文件:git add .
6、生成版本:git commit -m "Version Name"
7、设置个人本地名称:git config --local user.name "XiaoPengYou"
8、设置个人全局邮件:git config --global user.email "123456@qq.com"
9、查看提交记录:git log
10、查看特定作者提交记录:git log --author="XiaoPengYou"
11、查看包含特定关键词提交记录:git log --grep="KeyWord"
12、更改最近提交的版本的名称:git commit --amend -m 'Fix Bug X'
13、将最近一次更新并入最近的版本:git commit --amend --no-edit
14、避免对特定文件或者文件夹的追踪:添加.gitignore文本文件,在该文本文件中添加免于追踪的文件或者文件夹的列表。