标签:lin code 子目录 branch keep linux 对比 选择 变更
GIT之前很多使用的svn vss tfs hs
就是在本地文件夹中添加了一个.git文件夹,用于记录所有的项目变更信息
git status
用于查看本地仓储的状态
第一次查看,显示的是根目录下没有被跟踪的文件
git status -s //-s参数,输出简要的变更日志
git add
可以将一个没有被跟踪的文件添加到跟踪列表
git add . 添加所有文件
类似于node_modules这种性质的文件是不需要跟踪的
在代码文件夹的根目录添加一个.gitignore文件
此文件用于说明忽略的文件有哪些
git commit
将本地的变化提交到本地的仓库文件夹归档
一般在有了一个小单元的整体变化后再提交
git diff
可以用于当前状态和版本库中的状态对比
git log
可以查看提交日志
新建代码仓库
```shell
$ git init
$ git init [project-name]
$ git clone [url]
```
配置
```shell
$ git config --list
$ git config -e [--global]
$ git config [--global] user.name "[name]"
$ git config [--global] user.email "[email address]"
```
增加/删除文件
```shell
$ git add [file1] [file2] ...
$ git add [dir]
$ git add .
$ git add -p
$ git rm [file1] [file2] ...
$ git rm --cached [file]
$ git mv [file-original] [file-renamed]
```
代码提交
```shell
$ git commit -m [message]
$ git commit [file1] [file2] ... -m [message]
$ git commit -a
$ git commit -v
$ git commit --amend -m [message]
$ git commit --amend [file1] [file2] ...
```
分支
```shell
$ git branch
$ git branch -r
$ git branch -a
$ git branch [branch-name]
$ git checkout -b [branch]
$ git branch [branch] [commit]
$ git branch --track [branch] [remote-branch]
$ git checkout [branch-name]
$ git checkout -
$ git branch --set-upstream [branch] [remote-branch]
$ git merge [branch]
$ git cherry-pick [commit]
$ git branch -d [branch-name]
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]
```
标签
```shell
$ git tag
$ git tag [tag]
$ git tag [tag] [commit]
$ git tag -d [tag]
$ git push origin :refs/tags/[tagName]
$ git show [tag]
$ git push [remote] [tag]
$ git push [remote] --tags
$ git checkout -b [branch] [tag]
```
查看信息
```shell
$ git status
$ git log
$ git log --stat
$ git log -S [keyword]
$ git log [tag] HEAD --pretty=format:%s
$ git log [tag] HEAD --grep feature
$ git log --follow [file]
$ git whatchanged [file]
$ git log -p [file]
$ git log -5 --pretty --oneline
$ git shortlog -sn
$ git blame [file]
$ git diff
$ git diff --cached [file]
$ git diff HEAD
$ git diff [first-branch]...[second-branch]
$ git diff --shortstat "@{0 day ago}"
$ git show [commit]
$ git show --name-only [commit]
$ git show [commit]:[filename]
$ git reflog
```
远程同步
```shell
$ git fetch [remote]
$ git remote -v
$ git remote show [remote]
$ git remote add [shortname] [url]
$ git pull [remote] [branch]
$ git push [remote] [branch]
$ git push [remote] --force
$ git push [remote] --all
```
撤销
```shell
$ git checkout [file]
$ git checkout [commit] [file]
$ git checkout .
$ git reset [file]
$ git reset --hard
$ git reset [commit]
$ git reset --hard [commit]
$ git reset --keep [commit]
$ git revert [commit]
$ git stash
$ git stash pop
```
其它
# 生成一个可供发布的压缩包
$ git archive
标签:lin code 子目录 branch keep linux 对比 选择 变更
原文地址:https://www.cnblogs.com/angelwgh/p/8979190.html