Git相关知识整理

http://zhuxy.com/learn/2014/01/20/something-about-git/


Git常用命令备忘

Git配置
git config --global user.name "xxx"             # 设置用户名,会在log里面显示
git config --global user.email "xxx@gmail.com"  # 设置用户邮箱,会在log里面显示
git config --global color.ui true               # 配置终端输出着色支持
git config --global core.editor vi              # 设置Editor使用vi
git config -l                                   # 列举所有配置

用户的git配置文件~/.gitconfig
Git常用命令

建库、查看、添加、提交、删除、找回,重置修改文件

git help <command>              # 显示command的help

git init                        # 建立Git版本库
git init --bare                 # 建立Git裸版本库

git show                        # 显示最新一次提交修改
git show $id                    # 显示某次提交的修改记录

git chcekout  <file>            # 抛弃工作区文件<file>的修改
git checkout  .                 # 抛弃工作区修改

git add <file>                  # 将工作文件修改提交到本地暂存区
git add .                       # 将所有修改过的工作文件提交暂存区

git rm <file>                   # 从版本库中删除文件
git rm <file> --cached          # 从版本库中删除文件,但不删除文件

git reset <file>                # 从暂存区恢复到工作文件
git reset -- .                  # 从暂存区恢复到工作文件
git reset --hard                # 恢复最近一次提交过的状态,即放弃上次提交后的所有本次修改

git commit                      # 本地提交
git commit -a                   # 将git add, git rm和git commit等操作都合并在一起做
git commit -am "some comments"  # 把所有修改以some comments为log来提交
git commit --amend              # 修改最后一次提交记录

git revert <$id>                # 恢复某次提交的状态,恢复动作本身也创建了一次提交对象
git revert HEAD                 # 恢复最后一次提交的状态

查看文件diff

git diff                        # 比较当前文件和暂存区文件差异
git diff <file>                 # 比较当前文件<file>和暂存区文件差异
git diff <$id1> <$id2>          # 比较两次提交之间的差异
git diff <branch1> <branch2>    # 在两个分支之间比较 
git diff --staged               # 比较暂存区和版本库差异
git diff --cached               # 比较暂存区和版本库差异
git diff --stat                 # 仅仅比较统计信息

查看提交记录

git log             # 查看全部提交记录
git log <file>      # 查看该文件每次提交记录
git log -p <file>   # 查看每次详细修改内容的diff
git log -p -2       # 查看最近两次详细修改内容的diff
git log --stat      # 查看提交统计信息
Git 本地分支管理

查看、切换、创建和删除分支

git branch -a           # 查看本地与远程的全部分支
git branch -r           # 查看远程分支
git branch <new_branch> # 创建新的分支
git branch -v           # 查看各个分支最后提交信息
git branch --merged     # 查看已经被合并到当前分支的分支
git branch --no-merged  # 查看尚未被合并到当前分支的分支

git checkout <branch>     # 切换到某个分支
git checkout -b <new_branch> # 基于当前分支创建新的分支,并且切换过去
git checkout -b <new_branch> <branch>  # 基于branch创建新的new_branch

git checkout $id          # 把某次历史提交记录checkout出来,但无分支信息,切换到其他分支会自动删除
git checkout $id -b <new_branch>  # 把某次历史提交记录checkout出来,创建成一个分支

git branch -d <branch>  # 删除某个分支
git branch -D <branch>  # 强制删除某个分支 (未被合并的分支被删除的时候需要强制)

分支合并和rebase

git merge <branch>               # 将branch分支合并到当前分支
git merge origin/master --no-ff  # 不要Fast-Foward合并,这样可以生成merge提交

git rebase master <branch>       # 将master rebase到branch
Git补丁管理
git diff > ../sync.patch         # 生成补丁
git apply ../sync.patch          # 打补丁
git apply --check ../sync.patch  # 测试补丁能否成功
Git暂存管理
git stash                        # 暂存
git stash list                   # 列所有stash
git stash apply                  # 恢复暂存的内容
git stash drop                   # 删除暂存区
Git远程分支管理
git pull                         # 抓取远程仓库所有分支更新并合并到本地
git pull --no-ff                 # 抓取远程仓库所有分支更新并合并到本地,不要快进合并
git fetch origin                 # 抓取远程仓库更新
git merge origin/master          # 将远程主分支合并到本地当前分支
git checkout --track origin/branch     # 跟踪某个远程分支创建相应的本地分支
git checkout -b <loca_branch> origin/<remote_branch>  # 基于远程分支创建本地分支,功能同上
git branch --set-upstream develop origin/develop    # 设置跟踪远程库分支和本地库分支

git push                         # push所有分支
git push origin master           # 将本地主分支推到远程主分支
git push -u origin master        # 将本地主分支推到远程(如无远程主分支则创建,用于初始化远程仓库)
git push origin <branch>         # 将本地分支推到远程分支
git push origin <local_branch>:<remote_branch>  # 提交本地local分支作为远程的remote分支
git push origin --delete <branchName> # 删除远程分支
Git远程仓库管理
git remote -v                    # 查看远程服务器地址和仓库名称
git remote show origin           # 查看远程服务器仓库状态
git remote add origin git@github:robbin/robbin_site.git         # 添加远程仓库地址
git remote set-url origin git@github.com:robbin/robbin_site.git # 设置修改远程仓库地址
git remote set-head origin master   # 设置远程仓库的HEAD指向master分支
git remote rm <repository>       # 删除远程仓库

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值