常用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
| # 本地操作 # 查看当前配置: git config -l # 以当前目录为基础创建本地仓库: git init # 添加暂存区:.所有修改新增文件 -u所有修改删除 -A所有 git add xxx文件 # 查看暂存区倌息: git status # 暂存区提交历史区: git commit -m‘说明’ # 一并提交暂存区历史区(只适合已提交过文件): git commit -a -m‘说明’ # 查看分支: git branch .gitignore文件,提交忽略项如.idea和node_modules等 # 历史记录: git log /reflog # 把暂存区所有内容撤回工作区所有记录,少用: git rm -cached . r # 暂存区撤回工作区,覆盖工作区不可恢复: git checkout . # 暂存区回滚到上一次: git reset HEAD . # 工作区VS暂存区: git diff # 工作区VS历史区: git diff master # 暂存区VS历史区: git diff -cached # 回滚历史版本暂存区工作区都被替代: git reset --hard 版本号 history》history.txt
# 关联远程仓库: git remote add 名字(oringin) 远程仓库地址 # 移除: git remote rm # 查看: git remote -v
# 初始化: git clone 仓库地址
# 历史区同步 # 推送到远程仓库: git push oringin master # 从远程仓库拉取: git pull oringin master
# 单独分支管理: # 操作分支 # 查看分支 git branch # 创建分支 git branch xxx # 切换分支 git checkout xxx # 创建分支并切换 git checkout -b xxx # 删除分支 git branch -D xxx # 合并分支 git merge xxx # 查看分支提交和合并内容 git log --graph / --oneline # 获取当前分支名 git symbolic-ref --short -q HEAD # 基于历史commit创建分支 git checkout -b branchname 92483401abdc41bc64bbdde1a63ed7bbee403e19 # 本地分支push到远程服务器,远程分支与本地分支同名(当然可以随意起名) git push origin branchname:branchname # 删除远程分支 git push origin --delete branchname # 推送一个空分支到远程分支,其实就相当于删除远程分支 git push origin :branchname
# 从仓库同步 git pull # 历史坂本: git reset版本号 git checkout文件名
# 强制覆盖本地 git fetch --all git reset --hard origin/master git pull # 设置关联远程 git config remote.origin.url git@github.com:your_username/your_project.git
# https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受https带来的极速 # 设置记住密码(默认15分钟): git config --global credential.helper cache # 自定义设置时间:(设置一个小时之后失效) git config credential.helper 'cache --timeout=3600'
# 长期存储密码 git config --global credential.helper store
# 增加远程地址的时候带上密码也是可以的。(推荐) # 使用客户端也可以存储密码。
# 切换ssh->https # 切换到项目目录下 : cd projectfile/ # 移除远程ssh方式的仓库地址 git remote rm origin # 增加https远程仓库地址 git remote add origin http://yourname:password@git.oschina.net/name/project.git
# git config 查看配置信息 #config 配置有system级别 global(用户级别) 和local(当前仓库)三个 设置先从system-》global-》local 底层配置会覆盖顶层配置 分别使用--system/global/local 可以定位到配置文件 #查看系统config git config --system --list #查看当前用户(global)配置 git config --global --list #查看当前仓库配置信息 #git config -- local --list
git branch #查看本地所有分支 git status #查看当前状态 git commit #提交 git branch -a #查看所有的分支 git branch -r #查看远程所有分支 git commit -am "init" #提交并且加注释 git remote add origin git@192.168.1.119:ndshow git push origin master 将文件给推到服务器上 git remote show origin 显示远程库origin里的资源 git push origin master:develop git push origin master:hb-dev #将本地库与服务器上的库进行关联 git checkout --track origin/dev #切换到远程dev分支 git branch -D master develop #删除本地库develop git checkout -b dev #建立一个新的本地分支dev git merge origin/dev #将分支dev与当前分支进行合并 git checkout dev #切换到本地dev分支 git remote show #查看远程库 git add . git rm 文件名(包括路径) #从git中删除指定文件 git clone git://github.com/schacon/grit.git #从服务器上将代码给拉下来 git config --list #看所有用户 git ls-files #看已经被提交的 git rm [file name] #删除一个文件 git commit -a #提交当前repos的所有的改变 git add [file name] #添加一个文件到git index git commit -v #当你用-v参数的时候可以看commit的差异 git commit -m "This is the message describing the commit" #添加commit信息 git commit -a -a #是代表add,把所有的change加到git index里然后再commit git commit -a -v #一般提交命令 git log #看你commit的日志 git diff #查看尚未暂存的更新 git rm a.a #移除文件(从暂存区和工作区中删除) git rm --cached a.a #移除文件(只从暂存区中删除) git commit -m "remove" #移除文件(从Git中删除) git rm -f a.a #强行移除修改后文件(从暂存区和工作区中删除) git diff --cached 或 $ git diff --staged #查看尚未提交的更新 git stash push #将文件给push到一个临时空间中 git stash pop #将文件从临时空间pop下来 \--------------------------------------------------------- git remote add origin git@github.com:username/Hello-World.git git push origin master #将本地项目给提交到服务器中 \----------------------------------------------------------- git pull #本地与服务器端同步 \----------------------------------------------------------------- git push (远程仓库名) (分支名) #将本地分支推送到服务器上去。 git push origin serverfix:awesomebranch \------------------------------------------------------------------ git fetch #相当于是从远程获取最新版本到本地,不会自动merge git commit -a -m "log_message" #(-a是提交所有改动,-m是加入log信息) 本地修改同步至服务器端 : git branch branch_0.1 master #从主分支master创建branch_0.1分支 git branch -m branch_0.1 branch_1.0 #将branch_0.1重命名为branch_1.0 git checkout branch_1.0/master #切换到branch_1.0/master分支 git branch git push origin :branch_remote_name git branch -r -d branch_remote_name #删除远程branch \----------------------------------------------------------- #初始化版本库,并提交到远程服务器端 mkdir WebApp cd WebApp git init #本地初始化 touch README git add README #添加文件 git commit -m 'first commit' git remote add origin git@github.com:username/Hello-World.git #增加一个远程服务器端 #上面的命令会增加URL地址为'git@github.com:username/Hello-World.git',名称为origin的远程服务器库,以后提交代码的时候只需要使用 origin别名即可
|
命令速查表
1、常用的Git命令
命令 |
简要说明 |
git add |
添加至暂存区 |
git add–interactive |
交互式添加 |
git apply |
应用补丁 |
git am |
应用邮件格式补丁 |
git annotate |
同义词,等同于 git blame |
git archive |
文件归档打包 |
git bisect |
二分查找 |
git blame |
文件逐行追溯 |
git branch |
分支管理 |
git cat-file |
版本库对象研究工具 |
git checkout |
检出到工作区、切换或创建分支 |
git cherry-pick |
提交拣选 |
git citool |
图形化提交,相当于 git gui 命令 |
git clean |
清除工作区未跟踪文件 |
git clone |
克隆版本库 |
git commit |
提交 |
git config |
查询和修改配置 |
git describe |
通过里程碑直观地显示提交ID |
git diff |
差异比较 |
git difftool |
调用图形化差异比较工具 |
git fetch |
获取远程版本库的提交 |
git format-patch |
创建邮件格式的补丁文件。参见 git am 命令 |
git grep |
文件内容搜索定位工具 |
git gui |
基于Tcl/Tk的图形化工具,侧重提交等操作 |
git help |
帮助 |
git init |
版本库初始化 |
git init-db* |
同义词,等同于 git init |
git log |
显示提交日志 |
git merge |
分支合并 |
git mergetool |
图形化冲突解决 |
git mv |
重命名 |
git pull |
拉回远程版本库的提交 |
git push |
推送至远程版本库 |
git rebase |
分支变基 |
git rebase–interactive |
交互式分支变基 |
git reflog |
分支等引用变更记录管理 |
git remote |
远程版本库管理 |
git repo-config* |
同义词,等同于 git config |
git reset |
重置改变分支“游标”指向 |
git rev-parse |
将各种引用表示法转换为哈希值等 |
git revert |
反转提交 |
git rm |
删除文件 |
git show |
显示各种类型的对象 |
git stage* |
同义词,等同于 git add |
git stash |
保存和恢复进度 |
git status |
显示工作区文件状态 |
git tag |
里程碑管理 |
2、对象库操作相关命令
命令 |
简要说明 |
git commit-tree |
从树对象创建提交 |
git hash-object |
从标准输入或文件计算哈希值或创建对象 |
git ls-files |
显示工作区和暂存区文件 |
git ls-tree |
显示树对象包含的文件 |
git mktag |
读取标准输入创建一个里程碑对象 |
git mktree |
读取标准输入创建一个树对象 |
git read-tree |
读取树对象到暂存区 |
git update-index |
工作区内容注册到暂存区及暂存区管理 |
git unpack-file |
创建临时文件包含指定 blob 的内容 |
git write-tree |
从暂存区创建一个树对象 |
3、引用操作相关命令
命令 |
简要说明 |
git check-ref-format |
检查引用名称是否符合规范 |
git for-each-ref |
引用迭代器,用于shell编程 |
git ls-remote |
显示远程版本库的引用 |
git name-rev |
将提交ID显示为友好名称 |
git peek-remote* |
过时命令,请使用 git ls-remote |
git rev-list |
显示版本范围 |
git show-branch |
显示分支列表及拓扑关系 |
git show-ref |
显示本地引用 |
git symbolic-ref |
显示或者设置符号引用 |
git update-ref |
更新引用的指向 |
git verify-tag |
校验 GPG 签名的Tag |
4、版本库管理相关命令
命令 |
简要说明 |
git count-objects |
显示松散对象的数量和磁盘占用 |
git filter-branch |
版本库重构 |
git fsck |
对象库完整性检查 |
git fsck-objects* |
同义词,等同于 git fsck |
git gc |
版本库存储优化 |
git index-pack |
从打包文件创建对应的索引文件 |
git lost-found* |
过时,请使用 git fsck –lost-found 命令 |
git pack-objects |
从标准输入读入对象ID,打包到文件 |
git pack-redundant |
查找多余的 pack 文件 |
git pack-refs |
将引用打包到 .git/packed-refs 文件中 |
git prune |
从对象库删除过期对象 |
git prune-packed |
将已经打包的松散对象删除 |
git relink |
为本地版本库中相同的对象建立硬连接 |
git repack |
将版本库未打包的松散对象打包 |
git show-index |
读取包的索引文件,显示打包文件中的内容 |
git unpack-objects |
从打包文件释放文件 |
git verify-pack |
校验对象库打包文件 |
5、数据传输相关命令
命令 |
简要说明 |
git fetch-pack |
执行 git fetch 或 git pull 命令时在本地执行此命令,用于从其他版本库获取缺失的对象 |
git receive-pack |
执行 git push 命令时在远程执行的命令,用于接受推送的数据 |
git send-pack |
执行 git push 命令时在本地执行的命令,用于向其他版本库推送数据 |
git upload-archive |
执行 git archive –remote 命令基于远程版本库创建归档时,远程版本库执行此命令传送归档 |
git upload-pack |
执行 git fetch 或 git pull 命令时在远程执行此命令,将对象打包、上传 |
6、邮件相关命令
命令 |
简要说明 |
git imap-send |
将补丁通过 IMAP 发送 |
git mailinfo |
从邮件导出提交说明和补丁 |
git mailsplit |
将 mbox 或 Maildir 格式邮箱中邮件逐一提取为文件 |
git request-pull |
创建包含提交间差异和执行PULL操作地址的信息 |
git send-email |
发送邮件 |
7、协议相关命令
命令 |
简要说明 |
git daemon |
实现Git协议 |
git http-backend |
实现HTTP协议的CGI程序,支持智能HTTP协议 |
git instaweb |
即时启动浏览器通过 gitweb 浏览当前版本库 |
git shell |
受限制的shell,提供仅执行Git命令的SSH访问 |
git update-server-info |
更新哑协议需要的辅助文件 |
git http-fetch |
通过HTTP协议获取版本库 |
git http-push |
通过HTTP/DAV协议推送 |
git remote-ext |
由Git命令调用,通过外部命令提供扩展协议支持 |
git remote-fd |
由Git命令调用,使用文件描述符作为协议接口 |
git remote-ftp |
由Git命令调用,提供对FTP协议的支持 |
git remote-ftps |
由Git命令调用,提供对FTPS协议的支持 |
git remote-http |
由Git命令调用,提供对HTTP协议的支持 |
git remote-https |
由Git命令调用,提供对HTTPS协议的支持 |
git remote-testgit |
协议扩展示例脚本 |
8、版本库转换和交互相关命令
命令 |
简要说明 |
git archimport |
导入Arch版本库到Git |
git bundle |
提交打包和解包,以便在不同版本库间传递 |
git cvsexportcommit |
将Git的一个提交作为一个CVS检出 |
git cvsimport |
导入CVS版本库到Git。或者使用 cvs2git |
git cvsserver |
Git的CVS协议模拟器,可供CVS命令访问Git版本库 |
git fast-export |
将提交导出为 git-fast-import 格式 |
git fast-import |
其他版本库迁移至Git的通用工具 |
git svn |
Git 作为前端操作 Subversion |
9、合并相关的辅助命令
命令 |
简要说明 |
git merge-base |
供其他脚本调用,找到两个或多个提交最近的共同祖先 |
git merge-file |
针对文件的两个不同版本执行三向文件合并 |
git merge-index |
对index中的冲突文件调用指定的冲突解决工具 |
git merge-octopus |
合并两个以上分支。参见 git merge 的octopus合并策略 |
git merge-one-file |
由 git merge-index 调用的标准辅助程序 |
git merge-ours |
合并使用本地版本,抛弃他人版本。参见 git merge 的ours合并策略 |
git merge-recursive |
针对两个分支的三向合并。参见 git merge 的recursive合并策略 |
git merge-resolve |
针对两个分支的三向合并。参见 git merge 的resolve合并策略 |
git merge-subtree |
子树合并。参见 git merge 的 subtree 合并策略 |
git merge-tree |
显式三向合并结果,不改变暂存区 |
git fmt-merge-msg |
供执行合并操作的脚本调用,用于创建一个合并提交说明 |
git rerere |
重用所记录的冲突解决方案 |
10、 杂项
命令 |
简要说明 |
git bisect–helper |
由 git bisect 命令调用,确认二分查找进度 |
git check-attr |
显示某个文件是否设置了某个属性 |
git checkout-index |
从暂存区拷贝文件至工作区 |
git cherry |
查找没有合并到上游的提交 |
git diff-files |
比较暂存区和工作区,相当于 git diff –raw |
git diff-index |
比较暂存区和版本库,相当于 git diff –cached –raw |
git diff-tree |
比较两个树对象,相当于 git diff –raw A B |
git difftool–helper |
由 git difftool 命令调用,默认要使用的差异比较工具 |
git get-tar-commit-id |
从 git archive 创建的 tar 包中提取提交ID |
git gui–askpass |
命令 git gui 的获取用户口令输入界面 |
git notes |
提交评论管理 |
git patch-id |
补丁过滤行号和空白字符后生成补丁唯一ID |
git quiltimport |
将Quilt补丁列表应用到当前分支 |
git replace |
提交替换 |
git shortlog |
对 git log 的汇总输出,适合于产品发布说明 |
git stripspace |
删除空行,供其他脚本调用 |
git submodule |
子模组管理 |
git tar-tree |
过时命令,请使用 git archive |
git var |
显示 Git 环境变量 |
git web–browse |
启动浏览器以查看目录或文件 |
git whatchanged |
显示提交历史及每次提交的改动 |
git-mergetool–lib |
包含于其他脚本中,提供合并/差异比较工具的选择和执行 |
git-parse-remote |
包含于其他脚本中,提供操作远程版本库的函数 |
git-sh-setup |
包含于其他脚本中,提供 shell 编程的函数库 |
设置代理访问git
Git允许使用三种协议来连接远程仓库:ssh、http、git。所以,如果你要设置代理,必须首先明确本地git使用何种协议连接远程仓库,然后根据不同协议设置代理。
前提:socks5代理服务器,默认端口1080
设置SSH协议的代理
如果远程仓库拥有如下的格式:
1 2
| git@github.com:guobq/guobq.github.io.git ssh://git@github.com:guobq/guobq.github.io.git
|
说明是使用SSH协议连接的远程仓库。git依赖ssh去连接,需要配置ssh的socks5代理实现git的代理。在ssh的配置文件~/.ssh/config(没有则新建)使用ProxyCommand配置:
1 2 3 4 5 6
| #Linux Host bitbucket.org User git Port 22 Hostname bitbucket.org ProxyCommand nc -x 127.0.0.1:1080 %h %p
|
1 2 3 4 5 6
| #windows Host bitbucket.org User git Port 22 Hostname bitbucket.org ProxyCommand connect -S 127.0.0.1:1080 %h %p
|
如果使用github,只需要把bitbucket.org换成github.com。
具体配置的含义请参考:http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/ssh_config.5?query=ssh_config&sec=5&arch=amd64。
设置http/https协议代理
如果远程仓库链接拥有如下格式:
1 2
| http://github.com/guobq/guobq.github.io.git https://github.com/guobq/guobq.github.io.git
|
说明使用的是http/https协议,可以使用git配套的CMSSW支持的代理协议:SOCKS4、SOCKS5和HTTPS/HTTPS。可通过配置http.proxy实现:
1 2 3 4
| #全局设置 git config --global http.proxy socks5://localhost:1080 #本次设置 git clone https://github.com/guobq/guobq.github.io.git --config "http.proxy=127.0.0.1:1080"
|
这里演示的是socks5的配置,需要其他配置的可参考git-config配置中的http.proxy。
设置Git协议的代理
Git协议是Git提供的一个守护进程,它监听专门的端口(9418),然后提供类似于ssh协议一样的服务,只是它不需要验证。所以,然后用户通过网络都可以使用git协议连接提供git连接的仓库。
如果远程仓库的链接是如下形式:
1
| git://github.com/archerie/learngit.git
|
该仓库使用git协议连接。需要使用CMSSW提供的简单脚本去通过socks5代理访问:git-proxy。配置如下:
1 2
| git config --global core.gitproxy "git-proxy" git config --global socks.proxy "localhost:1080"
|
questions
Git Pull Failed:You have not concluded your merge.Exiting because of unfinished merge
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| #在拉取远程代码时,出现这样的情况,Git Pull Failed:You have not concluded your merge.Exiting because of unfinished merge。出现这种情况的原因如系统提示,可能在pull代码之前merge合并失败。 #在解决这个问题之前,先看看需要了解的知识。 git fetch #用于从另一个存储库下载对象和引用。远程跟踪已更新分支(git术语叫commit),需要将这些更新取回本地,这时就要用到git fetch命令。 #语法:git fetch <远程主机名>。例如:git fetch orgin master,表示取回origin主机的master分支。更新所有分支,命令可以简写为git fetch。 git pull #用于取回远程主机某个分支的更新,再与本地的指定分支合并。这时你可能已经真正明白为什么会出现拉取失败的原因了,原因就在于拉取之后的代码合并失败造成的。 #语法:git pull <远程主机名><远程分支名>:<本地分支名>。例如:git pull origin next:master,表示取回origin主机的next分支,与本地的master分支合并。如果远程分支(next)要与当前分支合并,则冒号后面的部分可以省略。 git reset #语法:git reset [- -hard|soft|mixed|merge|keep][或HEAD],将当前的分支重新设置到指定的commit id或者HEAD,其中HEAD是默认路径。其中hard、soft、mixed、merge、keep是设置的模式。通常使用- -hard,表示自commit id以来,工作目录中的任何改变都被丢弃,并把HEAD指向commit id。
#解决方法 #方法一:舍弃本地代码,远程版本覆盖本地版本 #使用这种方法之前,可以先将本地修改的代码备份一下,避免重敲代码。具体命令如下: git fetch --all git reset --hard origin/master git pull
#方法二:保留本地代码,中止合并–>重新合并–>重新拉取 git merge --abort git reset --merge git pull #这种做法需要处理代码冲突,因此以上两种做法,根据你的需要,选择合适的解决办法。
|