Posted by Aaronwn Blog on December 6, 2018

常用Git指令整理

常用操作

配置

git config --global user.name "Your Name"
git config --global user.email "email@example.com"

添加文件到缓存区

添加所有变化的文件
 	git add .

添加名称指定文件
git add filename

提交

# 提交暂存区到仓库区
 $ git commit -m "msg"

# 提交工作区自上次commit之后的变化,直接到仓库区
 $ git commit -a

# 将add和commit合为一步
 $ git commit -am 'xxx'  

# 使用一次新的commit,替代上一次提交
 $ git commit --amend -m [message]

远程同步

# 下载远程仓库的所有变动
 $ git fetch [remote]

# 显示所有远程仓库
 $ git remote -v

# 增加一个新的远程仓库,并命名
 $ git remote add origin git@server-name:path/repo-name.git

# 取回远程仓库的变化,并与本地分支合并
 $ git pull origin master

# 上传本地指定分支到远程仓库
 $ git push origin master

# 强行推送当前分支到远程仓库,即使有冲突
 $ git push origin master -f

分支

# 列出所有本地分支
 $ git branch

# 列出所有远程分支
 $ git branch -r

# 列出所有本地分支和远程分支
 $ git branch -a

# 新建一个分支,但依然停留在当前分支
 $ git branch [branch-name]

# 新建一个分支,并切换到该分支
 $ git checkout -b [branch]

# 新建一个分支,指向指定commit
 $ 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 branch -d [branch-name]

# 删除远程分支
 $ git push origin --delete [branch-name]
 $ git branch -dr [remote/branch]

标签Tags

命令git tag name就可以打一个新标签,可以用命令git tag查看所有标签

新建标签
 git tag v1.0

给commit id 为25656e2的历史版本打标签
 git tag v1.0  25656e2	

查看标签
 git tag

删除
 git tag -d V1.0

删除远程tag
 git push origin :refs/tags/[tagName]

推送全部未推送过的本地标签
 git push origin --tags

推送一个本地标签
 git push origin tagname

拉取
 git fetch origin tag V1.0

查看信息

# 显示有变更的文件
 $ git status

# 显示当前分支的版本历史
 $ git log

# 显示暂存区和工作区的差异
 $ git diff

# 显示暂存区和上一个commit的差异
 $ git diff --cached [file]

# 显示工作区与当前分支最新commit之间的差异
 $ git diff HEAD

# 显示当前分支的最近几次提交
 $ git reflog

撤销

# 恢复暂存区的指定文件到工作区
 $ git checkout --[filename]

# 恢复暂存区的所有文件到工作区
 $ git checkout .

# 重置暂存区的指定文件,与上一次commit保持一致,但工作区不变
 $ git reset [file]

# 重置暂存区与工作区,与上一次commit保持一致
 $ git reset --hard

# 重置当前分支的指针为指定commit,同时重置暂存区,但工作区不变
 $ git reset [commit]

# 重置当前分支的HEAD为指定commit,同时重置暂存区和工作区,与指定commit一致
 $ git reset --hard [commit]

# 新建一个commit,用来撤销指定commit
# 后者的所有变化都将被前者抵消,并且应用到当前分支
 $ git revert [commit]

# 暂时将未提交的变化移除,稍后再移入
 $ git stash
 $ git stash pop

其它

Git切换远程仓库地址

1.修改命令
 $ git remote set-url [origin url]
2.先删后加
 $ git remote rm origin
 $ git remote add origin git@github.com:aaronwn/test.git

Git仓库删除全部历史提交记录

1.checkout
 $ git checkout --orphan new_branch
2.add all files
 $ git add .
3.commit the changes
 $ git commit -m 'msg'
4. delete master branch

git pull 提示未关联远程仓库历史记录(refusing to merge unrelated histories)

git pull origin master --allow-unrelated-histories

参考