Git教程

Git是什么

Git是具有快速灵活分布式特性的版本控制系统,内置了丰富的命令。

快速在简单命令即可实现版本控制的功能:

git commit -am "commit message"

灵活在随时开分支以便实验想法,敏捷的迭代,有想法就有分支:

git checkout -b i_have_an_idea

分布式体现在你可以随时把代码提交到本地仓库,公司断网你依然可以在本地仓库自己玩,即使公司Git服务器丢失损毁,每个人的本地仓库都是备份。

离线仓库意味着大多数的操作都可以本地完成,比如查看文件修改历史(建议用IDEA,可视化做得很好):

git log -p pom.xml

瞬间就可以查到这文件自创建以来所有的修改记录,作为对比的SVN则慢得无以复加。

最好在能熟练使用git commands后再使用GUI,这有利于理解每一步Git究竟做了什么,否则你会发现Git有各种莫名其妙的错误,轻则push失败,重则回滚他人代码。

Git常用操作

下面讲讲Git的基本操作

新建仓库:
# 在当前目录新建一个Git代码库
$ git init

# 下载一个项目和它的整个代码历史
$ git clone [url]
修改提交:
# 将文件此时的变化加入暂存区
$ git add filename.txt 

# 将暂存区中的文件提交到本地仓库
$ git commit -m "commit message"

# 更新远程代码到本地仓库
$ git fetch origin 
# 将远程仓库master分支merge到当前分支
# 如要取消此次冲突合并,切记使用git merge --abort,否则使用git reset --hard会导致他人的commit被你冲掉
$ git merge origin/master

# 拉取远程仓库的代码,并合并到本地origin为远程仓库
# 等于git fetch + git merge,
$ git pull origin

# 将本地仓库推送到远程仓库,origin为远程仓库,master为本地分支名,也是Git默认的主线
$ git push origin master

中级操作:

# 新建一个tag在当前commit,比如发版本后,记录此commit,有紧急发布可以在这个tag处开紧急发布分支
$ git tag [tag]

# 列出所有本地分支
$ 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]

# 选择一个commit,合并进当前分支,这个功能我们在SVN中用的多,实际不建议这样使用,容易造成文件提交历史的混乱
$ git cherry-pick [commit]

# 删除分支
$ git branch -d [branch-name]

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


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

# 恢复某个commit的指定文件到暂存区和工作区
$ git checkout [commit] [file]

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

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

# 重置暂存区与工作区,与上一次commit保持一致,用的较多,IDEA中的Revert功能
$ git reset --hard

# 暂存当前工作区代码:
# 当你正在进行项目中某一部分的工作,里面的东西处于一个比较杂乱的状态,
# 而你想转到其他分支上进行一些工作,可你不想提交进行了一半的工作,否则以后你无法回到这个工作点。
# 解决这个问题的办法就是git stash命令。
$ git stash

高级玩法

  1. git rebase 除非你非常熟悉git否则不要玩这个!!!!代码丢了找都找不回来!!

当你在自己的分支上进行了大量的commit,可能这些commit有很多都是无意义的rename variable之类的,合并到主线会影响分支线的美观,这时候可使用git rebase命令来压缩commit。
需要注意的是最好只压缩本地的commit,或你确定该远程分支只有你一人使用,原因是git rebase会修改git仓库的历史,可能会和他人的仓库冲突。

# 压缩最近4次提交,会进入交互,将需要压缩的commit从pick改为squash
$ git rebase -i HEAD~4
$ git add .
$ git rebase --continue # 放弃本次rebase使用git rebase --abort
$ git push -f origin master # -f强制推送,本地的仓库覆盖远程分支,忽略冲突,master分支应禁止此操作
  1. 修改commit message,使用idea很方便
$ git commit --amend
# ...vim your file...
$ git commit --continue
  1. Patch,用的不多
$ git diff branch1 branch2 > diff.patch
$ git am diff.path # 将patch补丁提交到当前分支
  1. Revert与Reset,使用idea很方便
git revert HEAD # 使用一个新的commit来抵充上一次提交,有commit hisroty
git reset # 使用暂存区覆盖工作区,没有commit history

更多的Git用法可以看官方文档,有中文。
也可以使用命令(无中文)如:

$ git --help
usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           <command> [<args>]

These are common Git commands used in various situations:

start a working area (see also: git help tutorial)
   clone      Clone a repository into a new directory
   init       Create an empty Git repository or reinitialize an existing one

work on the current change (see also: git help everyday)
   add        Add file contents to the index
   mv         Move or rename a file, a directory, or a symlink
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index

examine the history and state (see also: git help revisions)
   bisect     Use binary search to find the commit that introduced a bug
   grep       Print lines matching a pattern
   log        Show commit logs
   show       Show various types of objects
   status     Show the working tree status

grow, mark and tweak your common history
   branch     List, create, or delete branches
   checkout   Switch branches or restore working tree files
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   merge      Join two or more development histories together
   rebase     Reapply commits on top of another base tip
   tag        Create, list, delete or verify a tag object signed with GPG

collaborate (see also: git help workflows)
   fetch      Download objects and refs from another repository
   pull       Fetch from and integrate with another repository or a local branch
   push       Update remote refs along with associated objects

'git help -a' and 'git help -g' list available subcommands and some
concept guides. See 'git help <command>' or 'git help <concept>'
to read about a specific subcommand or concept.

如果在具体的指令后加--help则会打开本地网页,如git branch --help,内容为官方文档的英文版

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值