Git 从入门到精通,这篇包教包会!
时间:2020-06-23 10:51:22
手机看文章
扫描二维码
随时随地手机看文章
[导读]1、简介 Git 是什么? Git 是一个开源的分布式版本控制系统。 什么是版本控制? 版本控制是一种记录一个或若干文件内容变化,以便将来查阅特定版本修订情况的系统。 什么是分布式版本控制系统? 介绍分布式版本控制系统前,有必要先了解一下传统的集中式版本
Git 是什么?
什么是版本控制?
什么是分布式版本控制系统?
2、为什么使用 Git?
3、Git 安装
$ apt-get install libcurl4-gnutls-dev libexpat1-dev gettext \
> libz-dev libssl-dev
$ apt-get install git-core
$ git --version
git version 1.8.1.2
$ yum install curl-devel expat-devel gettext-devel \
> openssl-devel zlib-devel
$ yum -y install git-core
$ git --version
git version 1.7.1
4、Git配置
git config
的工具来帮助设置控制 Git 外观和行为的配置变量。这些变量存储在三个不同的位置:
-
/etc/gitconfig
文件: 包含系统上每一个用户及他们仓库的通用配置。如果使用带有--system
选项的git config
时,它会从此文件读写配置变量。 -
\~/.gitconfig
或\~/.config/git/config
文件:只针对当前用户。可以传递--global
选项让 Git 读写此文件。 -
当前使用仓库的 Git 目录中的 config
文件(就是.git/config
):针对该仓库。
.git/config
的配置变量会覆盖
/etc/gitconfig
中的配置变量。
$HOME
目录下(一般情况下是
C:\Users\$USER
)的
.gitconfig
文件。Git 同样也会寻找
/etc/gitconfig
文件,但只限于 MSys 的根目录下,即安装 Git 时所选的目标位置。
5、用户信息
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
--global
选项,那么该命令只需要运行一次,因为之后无论你在该系统上做任何事情, Git 都会使用那些信息。当你想针对特定项目使用不同的用户名称与邮件地址时,可以在那个项目目录下运行没有
--global
选项的命令来配置。
.gitignore
.gitignore
文件可能从字面含义也不难猜出:这个文件里配置的文件或目录,会自动被 git 所忽略,不纳入版本控制。
*.class
文件,又或是 IDE 自动生成的隐藏目录(Intellij 的
.idea
目录、Eclipse 的
.settings
目录等)等等。这些文件或目录实在没必要纳入版本管理。在这种场景下,你就需要用到
.gitignore
配置来过滤这些文件或目录。
.gitignore
模板等等。
6、Git原理
版本库
.git
子目录。这个目录是 git 用来跟踪管理版本库的,千万不要手动修改。
哈希值
24b9da6552252987aa493b52f8696cd6d3b00373
文件状态
-
已修改(modified) - 已修改表示修改了文件,但还没保存到数据库中。 -
已暂存(staged) - 已暂存表示对一个已修改文件的当前版本做了标记,使之包含在下次提交的快照中。 -
已提交(committed) - 已提交表示数据已经安全的保存在本地数据库中。
工作区域
-
工作区(working) - 当你 git clone
一个项目到本地,相当于在本地克隆了项目的一个副本。工作区是对项目的某个版本独立提取出来的内容。这些从 Git 仓库的压缩数据库中提取出来的文件,放在磁盘上供你使用或修改。 -
暂存区(staging) - 暂存区是一个文件,保存了下次将提交的文件列表信息,一般在 Git 仓库目录中。有时候也被称作 `‘索引’',不过一般说法还是叫暂存区。 -
本地仓库(local) - 提交更新,找到暂存区域的文件,将快照永久性存储到 Git 本地仓库。 -
远程仓库(remote) - 以上几个工作区都是在本地。为了让别人可以看到你的修改,你需要将你的更新推送到远程仓库。同理,如果你想同步别人的修改,你需要从远程仓库拉取更新。
7、Git命令
创建仓库
# 通过 SSH
$ git clone ssh://user@domain.com/repo.git
#通过 HTTP
$ git clone http://domain.com/user/repo.git
$ git init
添加修改
# 把指定文件添加到暂存区
$ git add xxx
# 把当前所有修改添加到暂存区
$ git add .
# 把所有修改添加到暂存区
$ git add -A
# 提交本地的所有修改
$ git commit -a
# 提交之前已标记的变化
$ git commit
# 附加消息提交
$ git commit -m 'commit message'
储藏
git stash
将本地的修改内容作为草稿储藏起来。
# 1. 将修改作为当前分支的草稿保存
$ git stash
# 2. 查看草稿列表
$ git stash list
stash@{0}: WIP on master: 6fae349 :memo: Writing docs.
# 3.1 删除草稿
$ git stash drop stash@{0}
# 3.2 读取草稿
$ git stash apply stash@{0}
撤销修改
# 移除缓存区的所有文件(i.e. 撤销上次git add)
$ git reset HEAD
# 将HEAD重置到上一次提交的版本,并将之后的修改标记为未添加到缓存区的修改
$ git reset <commit>
# 将HEAD重置到上一次提交的版本,并保留未提交的本地修改
$ git reset --keep <commit>
# 放弃工作目录下的所有修改
$ git reset --hard HEAD
# 将HEAD重置到指定的版本,并抛弃该版本之后的所有修改
$ git reset --hard <commit-hash>
# 用远端分支强制覆盖本地分支
$ git reset --hard <remote/branch> e.g., upstream/master, origin/my-feature
# 放弃某个文件的所有本地修改
$ git checkout HEAD <file>
.gitignore
文件前错误提交的文件:
$ git rm -r --cached .
$ git add .
$ git commit -m "remove xyz file"
$ git revert <commit-hash>
# 执行下面命令后,commit-hash 提交后的记录都会被彻底删除,使用需谨慎
$ git reset --hard <commit-hash>
$ git push -f
更新与推送
# 下载远程端版本,但不合并到HEAD中
$ git fetch <remote>
# 将远程端版本合并到本地版本中
$ git pull origin master
# 以rebase方式将远端分支与本地合并
$ git pull --rebase <remote> <branch>
# 将本地版本推送到远程端
$ git push remote <remote> <branch>
# 删除远程端分支
$ git push <remote> :<branch> (since Git v1.5.0)
$ git push <remote> --delete <branch> (since Git v1.7.0)
# 发布标签
$ git push --tags
查看信息
$ git status
$ git diff
# 从最新提交开始,显示所有的提交记录(显示hash, 作者信息,提交的标题和时间)
$ git log
# 显示某个用户的所有提交
$ git log --author="username"
# 显示某个文件的所有修改
$ git log -p <file>
# 从当前目录的所有文件中查找文本内容
$ git grep "Hello"
# 在某一版本中搜索文本
$ git grep "Hello" v2.5
分支
# 列出所有的分支
$ git branch
# 列出所有的远端分支
$ git branch -r
# 基于当前分支创建新分支
$ git branch <new-branch>
# 基于远程分支创建新的可追溯的分支
$ git branch --track <new-branch> <remote-branch>
# 删除本地分支
$ git branch -d <branch>
# 强制删除本地分支,将会丢失未合并的修改
$ git branch -D <branch>
# 切换分支
$ git checkout <branch>
# 创建并切换到新分支
$ git checkout -b <branch>
标签
# 给当前版本打标签
$ git tag <tag-name>
# 给当前版本打标签并附加消息
$ git tag -a <tag-name>
合并与重置
merge 与 rebase 虽然是 git 常用功能,但是强烈建议不要使用 git 命令来完成这项工作。 因为如果出现代码冲突,在没有代码比对工具的情况下,实在太艰难了。 你可以考虑使用各种 Git GUI 工具。
# 将分支合并到当前HEAD中
$ git merge <branch>
# 将当前HEAD版本重置到分支中,请勿重置已发布的提交
$ git rebase <branch>
Github
clone 方式
生成 SSH 公钥
\~/.ssh
目录下。进入该目录并列出其中内容,你便可以快速确认自己是否已拥有密钥:
$ cd ~/.ssh
$ ls
authorized_keys2 id_dsa known_hosts
config id_dsa.pub
id_dsa
或
id_rsa
命名的文件,其中一个带有
.pub
扩展名。
.pub
文件是你的公钥,另一个则是私钥。如果找不到这样的文件(或者根本没有
.ssh
目录),你可以通过运行
ssh-keygen
程序来创建它们。在 Linux/Mac 系统中,
ssh-keygen
随 SSH 软件包提供;在 Windows 上,该程序包含于 MSysGit 软件包中。
$ ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/home/schacon/.ssh/id_rsa):
Created directory '/home/schacon/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/schacon/.ssh/id_rsa.
Your public key has been saved in /home/schacon/.ssh/id_rsa.pub.
The key fingerprint is:
d0:82:24:8e:d7:f1:bb:9b:33:53:96:93:49:da:9b:e3 schacon@mylaptop.local
ssh-keygen
会确认密钥的存储位置(默认是
.ssh/id_rsa
),然后它会要求你输入两次密钥口令。如果你不想在使用密钥时输入口令,将其留空即可。
.pub
文件内容,并将其通过邮件发送。公钥看起来是这样的:
$ cat ~/.ssh/id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSU
GPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3
Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XA
t3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/En
mZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbx
NrRFi9wrf+M7Q== schacon@mylaptop.local
Key
编辑框并保存。至此大功告成。
8、最佳实践 Git Flow
详细内容,可以参考这篇文章:Git 在团队中的最佳实践 -- 如何正确使用 Git Flow
-
master
分支 - 也就是我们经常使用的主线分支,这个分支是最近发布到生产环境的代码,这个分支只能从其他分支合并,不能在这个分支直接修改。 -
develop
分支 - 这个分支是我们的主开发分支,包含所有要发布到下一个 release 的代码,这个分支主要是从其他分支合并代码过来,比如 feature 分支。 -
feature
分支 - 这个分支主要是用来开发一个新的功能,一旦开发完成,我们合并回 develop 分支进入下一个 release。 -
release
分支 - 当你需要一个发布一个新 release 的时候,我们基于 Develop 分支创建一个 release 分支,完成 release 后,我们合并到 master 和 develop 分支。 -
hotfix
分支 - 当我们在 master 发现新的 Bug 时候,我们需要创建一个 hotfix, 完成 hotfix 后,我们合并回 master 和 develop 分支,所以 hotfix 的改动会进入下一个 release。
9、Git常见问题
编辑提交 (editting commits)
我刚才提交了什么
git commit -a
提交了一次变化 (changes),而你又不确定到底这次提交了哪些内容。你就可以用下面的命令显示当前
HEAD
上的最近一次的提交 (commit):
(master)$ git show
$ git log -n1 -p
我的提交信息 (commit message) 写错了
$ git commit --amend
$ git commit --amend -m 'xxxxxxx'
我提交 (commit) 里的用户名和邮箱不对
$ git commit --amend --author "New Authorname <authoremail@mydomain.com>"
我想从一个提交 (commit) 里移除一个文件
$ git checkout HEAD^ myfile
$ git add -A
$ git commit --amend
我想删除我的的最后一次提交 (commit)
$ git reset HEAD^ --hard
$ git push -f [remote] [branch]
(my-branch*)$ git reset --soft HEAD@{1}
git revert SHAofBadCommit
, 那会创建一个新的提交 (commit) 用于撤消前一个提交的所有变化(changes);或者, 如果你推的这个分支是 rebase-safe 的 (例如:其它开发者不会从这个分支拉), 只需要使用
git push -f
;更多, 请参考 the above section。
删除任意提交 (commit)
$ git rebase --onto SHA1_OF_BAD_COMMIT^ SHA1_OF_BAD_COMMIT
$ git push -f [remote] [branch]
我尝试推一个修正后的提交 (amended commit) 到远程,但是报错:
To https://github.com/yourusername/repo.git
! [rejected] mybranch -> mybranch (non-fast-forward)
error: failed to push some refs to 'https://github.com/tanay1337/webmaker.org.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
-f
)。注意 –
总是 确保你指明一个分支!
(my-branch)$ git push origin mybranch -f
我意外的做了一次硬重置 (hard reset),我想找回我的内容
git reset --hard
, 你通常能找回你的提交 (commit), 因为 Git 对每件事都会有日志,且都会保存几天。
(master)$ git reflog
(master)$ git reset --hard SHA1234
暂存 (Staging)
我需要把暂存的内容添加到上一次的提交 (commit)
(my-branch*)$ git commit --amend
我想要暂存一个新文件的一部分,而不是这个文件的全部
$ git add --patch filename.x
-p
简写。这会打开交互模式, 你将能够用
s
选项来分隔提交 (commit);然而, 如果这个文件是新的, 会没有这个选择, 添加一个新文件时, 这样做:
$ git add -N filename.x
e
选项来手动选择需要添加的行,执行
git diff --cached
将会显示哪些行暂存了哪些行只是保存在本地了。
我想把在一个文件里的变化 (changes) 加到两个提交 (commit) 里
git add
会把整个文件加入到一个提交.
git add -p
允许交互式的选择你想要提交的部分.
我想把暂存的内容变成未暂存,把未暂存的内容暂存起来
$ git stash -k
$ git reset --hard
$ git stash pop
$ git add -A
未暂存 (Unstaged) 的内容
我想把未暂存的内容移动到一个新分支
$ git checkout -b my-branch
我想把未暂存的内容移动到另一个已存在的分支
$ git stash
$ git checkout my-branch
$ git stash pop
我想丢弃本地未提交的变化 (uncommitted changes)
## one commit
(my-branch)$ git reset --hard HEAD^
## two commits
(my-branch)$ git reset --hard HEAD^^
## four commits
(my-branch)$ git reset --hard HEAD~4
## or
(master)$ git checkout -f
$ git reset filename
我想丢弃某些未暂存的内容
$ git checkout -p
## Answer y to all of the snippets you want to drop
stash
, Stash 所有要保留下的内容, 重置工作拷贝, 重新应用保留的部分。
$ git stash -p
## Select all of the snippets you want to save
$ git reset --hard
$ git stash pop
$ git stash -p
## Select all of the snippets you don't want to save
$ git stash drop
分支 (Branches)
我从错误的分支拉取了内容,或把内容拉取到了错误的分支
git reflog
情况,找到在这次错误拉 (pull) 之前 HEAD 的指向。
(master)$ git reflog
ab7555f HEAD@{0}: pull origin wrong-branch: Fast-forward
c5bc55a HEAD@{1}: checkout: checkout message goes here
$ git reset --hard c5bc55a
我想扔掉本地的提交 (commit),以便我的分支与远程的保持一致
git status
会显示你领先 (ahead) 源(origin)多少个提交:
(my-branch)$ git status
## On branch my-branch
## Your branch is ahead of 'origin/my-branch' by 2 commits.
## (use "git push" to publish your local commits)
#
(master)$ git reset --hard origin/my-branch
我需要提交到一个新分支,但错误的提交到了 master
(master)$ git branch my-branch
(master)$ git reset --hard HEAD^
HEAD^
是
HEAD^1
的简写,你可以通过指定要设置的
HEAD
来进一步重置。
HEAD^
, 找到你想重置到的提交 (commit) 的 hash(
git log
能够完成), 然后重置到这个 hash。使用
git push
同步内容到远程。
a13b85e
:
(master)$ git reset --hard a13b85e
HEAD is now at a13b85e
(master)$ git checkout my-branch
我想保留来自另外一个 ref-ish 的整个文件
(solution)$ git add -A && git commit -m "Adding all changes from this spike into one big commit."
feature
, 或者
develop
), 你关心是保持整个文件的完整,你想要一个大的提交分隔成比较小。
-
分支 solution
, 拥有原型方案, 领先develop
分支。 -
分支 develop
, 在这里你应用原型方案的一些内容。
(develop)$ git checkout solution -- file1.txt
solution
拿到分支
develop
里来:
## On branch develop
## Your branch is up-to-date with 'origin/develop'.
## Changes to be committed:
## (use "git reset HEAD <file>..." to unstage)
#
## modified: file1.txt
我把几个提交 (commit) 提交到了同一个分支,而这些提交应该分布在不同的分支里
master
分支, 执行
git log
, 你看到你做过两次提交:
(master)$ git log
commit e3851e817c451cc36f2e6f3049db528415e3c114
Author: Alex Lee <alexlee@example.com>
Date: Tue Jul 22 15:39:27 2014 -0400
Bug #21 - Added CSRF protection
commit 5ea51731d150f7ddc4a365437931cd8be3bf3131
Author: Alex Lee <alexlee@example.com>
Date: Tue Jul 22 15:39:12 2014 -0400
Bug #14 - Fixed spacing on title
commit a13b85e984171c6e2a1729bb061994525f626d14
Author: Aki Rose <akirose@example.com>
Date: Tue Jul 21 01:12:48 2014 -0400
First commit
e3851e8
for #21,
5ea5173
for #14).
master
分支重置到正确的提交 (
a13b85e
):
(master)$ git reset --hard a13b85e
HEAD is now at a13b85e
(master)$ git checkout -b 21
(21)$
(21)$ git cherry-pick e3851e8
master
分支
(21)$ git checkout master
(master)$ git checkout -b 14
(14)$
cherry-pick
:
(14)$ git cherry-pick 5ea5173
我想删除上游 (upstream) 分支被删除了的本地分支
$ git fetch -p
我不小心删除了我的分支
(master)$ git checkout -b my-branch
(my-branch)$ git branch
(my-branch)$ touch foo.txt
(my-branch)$ ls
README.md foo.txt
(my-branch)$ git add .
(my-branch)$ git commit -m 'foo.txt added'
(my-branch)$ foo.txt added
1 files changed, 1 insertions(+)
create mode 100644 foo.txt
(my-branch)$ git log
commit 4e3cd85a670ced7cc17a2b5d8d3d809ac88d5012
Author: siemiatj <siemiatj@example.com>
Date: Wed Jul 30 00:34:10 2014 +0200
foo.txt added
commit 69204cdf0acbab201619d95ad8295928e7f411d5
Author: Kate Hudson <katehudson@example.com>
Date: Tue Jul 29 13:14:46 2014 -0400
Fixes #6: Force pushing after amending commits
my-branch
分支
(my-branch)$ git checkout master
Switched to branch 'master'
Your branch is up-to-date with 'origin/master'.(master)$ git branch -D my-branch
Deleted branch my-branch (was 4e3cd85).
(master)$ echo oh noes, deleted my branch!
oh noes, deleted my branch!
reflog
, 一个升级版的日志,它存储了仓库 (repo) 里面所有动作的历史。
(master)$ git reflog
69204cd HEAD@{0}: checkout: moving from my-branch to master
4e3cd85 HEAD@{1}: commit: foo.txt added
69204cd HEAD@{2}: checkout: moving from master to my-branch
(master)$ git checkout -b my-branch-help
Switched to a new branch 'my-branch-help'
(my-branch-help)$ git reset --hard 4e3cd85
HEAD is now at 4e3cd85 foo.txt added
(my-branch-help)$ ls
README.md foo.txt
reflog
在 rebasing 出错的时候也是同样有用的。
我想删除一个分支
(master)$ git push origin --delete my-branch
(master)$ git push origin :my-branch
(master)$ git branch -D my-branch
我想从别人正在工作的远程分支签出 (checkout) 一个分支
(master)$ git fetch --all
daves
分支签出到本地的
daves
(master)$ git checkout --track origin/daves
Branch daves set up to track remote branch daves from origin.
Switched to a new branch 'daves'
--track
是
git checkout -b [branch] [remotename]/[branch]
的简写)
daves
分支的本地拷贝, 任何推过 (pushed) 的更新,远程都能看到.
Rebasing 和合并 (Merging)
我想撤销 rebase/merge
(my-branch)$ git reset --hard ORIG_HEAD
我已经 rebase 过, 但是我不想强推 (force push)
(master)$ git checkout my-branch
(my-branch)$ git rebase -i master
(my-branch)$ git checkout master
(master)$ git merge --ff-only my-branch
我需要组合 (combine) 几个提交(commit)
master
的 pull-request。一般情况下你不关心提交 (commit) 的时间戳,只想组合
所有 提交 (commit) 到一个单独的里面, 然后重置(reset) 重提交 (recommit)。确保主(master) 分支是最新的和你的变化都已经提交了, 然后:
(my-branch)$ git reset --soft master
(my-branch)$ git commit -am "New awesome feature"
(my-branch)$ git rebase -i master
HEAD
进行 rebase。例如:你想组合最近的两次提交 (commit), 你将相对于
HEAD\~2
进行 rebase, 组合最近 3 次提交 (commit), 相对于
HEAD\~3
, 等等。
(master)$ git rebase -i HEAD~2
pick a9c8a1d Some refactoring
pick 01b2fd8 New awesome feature
pick b729ad5 fixup
pick e3851e8 another fix
## Rebase 8074d12..b729ad5 onto 8074d12
#
## Commands:
## p, pick = use commit
## r, reword = use commit, but edit the commit message
## e, edit = use commit, but stop for amending
## s, squash = use commit, but meld into previous commit
## f, fixup = like "squash", but discard this commit's log message
## x, exec = run command (the rest of the line) using shell
#
## These lines can be re-ordered; they are executed from top to bottom.
#
## If you remove a line here THAT COMMIT WILL BE LOST.
#
## However, if you remove everything, the rebase will be aborted.
#
## Note that empty commits are commented out
#
开头的行都是注释, 不会影响 rebase.
pick
, 你也可以通过删除对应的行来删除一个提交 (commit)。
f
:
pick a9c8a1d Some refactoring
pick 01b2fd8 New awesome feature
f b729ad5 fixup
f e3851e8 another fix
r
,或者更简单的用
s
替代
f
:
pick a9c8a1d Some refactoring
pick 01b2fd8 New awesome feature
s b729ad5 fixup
s e3851e8 another fix
Newer, awesomer features
## Please enter the commit message for your changes. Lines starting
## with '#' will be ignored, and an empty message aborts the commit.
## rebase in progress; onto 8074d12
## You are currently editing a commit while rebasing branch 'master' on '8074d12'.
#
## Changes to be committed:
#modified: README.md
#
(master)$ Successfully rebased and updated refs/heads/master.
安全合并 (merging) 策略
--no-commit
执行合并 (merge) 但不自动提交, 给用户在做提交前检查和修改的机会。
no-ff
会为特性分支 (feature branch) 的存在过留下证据, 保持项目历史一致。
(master)$ git merge --no-ff --no-commit my-branch
我需要将一个分支合并成一个提交 (commit)
(master)$ git merge --squash my-branch
我只想组合 (combine) 未推的提交(unpushed commit)
(master)$ git rebase -i @{u}
检查是否分支上的所有提交 (commit) 都合并 (merge) 过了
(master)$ git log --graph --left-right --cherry-pick --oneline HEAD...feature/120-on-scroll
(master)$ git log master ^feature/120-on-scroll --no-merges
交互式 rebase(interactive rebase) 可能出现的问题
这个 rebase 编辑屏幕出现'noop'
noop
-
检查确保主 (master) 分支没有问题 -
rebase HEAD\~2
或者更早
有冲突的情况
git status
找出哪些文件有冲突:
(my-branch)$ git status
On branch my-branch
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: README.md
README.md
有冲突。打开这个文件找到类似下面的内容:
<<<<<<< HEAD
some code
=========
some code
>>>>>>> new-commit
==
线到
new-commit
的地方) 与
HEAD
之间不一样的地方.
(master*)$ git mergetool -t opendiff
git add
变化了的 (changed) 文件, 然后用
git rebase --continue
继续 rebase。
(my-branch)$ git add README.md
(my-branch)$ git rebase --continue
git rebase --skip
。
(my-branch)$ git rebase --abort
杂项 (Miscellaneous Objects)
克隆所有子模块
$ git clone --recursive git://github.com/foo/bar.git
$ git submodule update --init --recursive
删除标签 (tag)
$ git tag -d <tag_name>
$ git push <remote> :refs/tags/<tag_name>
恢复已删除标签 (tag)
$ git fsck --unreachable | grep tag
$ git update-ref refs/tags/<tag_name> <hash>
已删除补丁 (patch)
git am
。在这种情况下, 最好手动的查看他们的提交 (commit),并把它们拷贝到一个本地新分支,然后做提交。
跟踪文件 (Tracking Files)
我只想改变一个文件名字的大小写,而不修改内容
(master)$ git mv --force myfile MyFile
我想从 Git 删除一个文件,但保留该文件
(master)$ git rm --cached log.txt
配置 (Configuration)
我想给一些 Git 命令添加别名 (alias)
\~/.gitconfig
。我在
[alias]
部分添加了一些快捷别名 (和一些我容易拼写错误的),如下:
[alias]
a = add
amend = commit --amend
c = commit
ca = commit --amend
ci = commit -a
co = checkout
d = diff
dc = diff --changed
ds = diff --staged
f = fetch
loll = log --graph --decorate --pretty=oneline --abbrev-commit
m = merge
one = log --pretty=oneline
outstanding = rebase -i @{u}
s = status
unpushed = log @{u}
wc = whatchanged
wip = rebase -i @{u}
zap = fetch -p
我想缓存一个仓库 (repository) 的用户名和密码
$ git config --global credential.helper cache
## Set git to use the credential memory cache
$ git config --global credential.helper 'cache --timeout=3600'
## Set the cache to timeout after 1 hour (setting is in seconds)
我不知道我做错了些什么
重置(reset)
了一些东西, 或者你合并了错误的分支, 亦或你强推了后找不到你自己的提交 (commit) 了。有些时候, 你一直都做得很好, 但你想回到以前的某个状态。
git reflog
的目的,
reflog
记录对分支顶端 (the tip of a branch) 的任何改变, 即使那个顶端没有被任何分支或标签引用。基本上, 每次 HEAD 的改变, 一条新的记录就会增加到
reflog
。遗憾的是,这只对本地分支起作用,且它只跟踪动作 (例如,不会跟踪一个没有被记录的文件的任何改变)。
(master)$ git reflog
0a2e358 HEAD@{0}: reset: moving to HEAD\~2
0254ea7 HEAD@{1}: checkout: moving from 2.2 to master
c10f740 HEAD@{2}: checkout: moving from master to 2.2
HEAD@{0}
标识.
$ git reset --hard 0254ea7
end
免责声明:本文内容由21ic获得授权后发布,版权归原作者所有,本平台仅提供信息存储服务。文章仅代表作者个人观点,不代表本平台立场,如有问题,请联系我们,谢谢!