Git使用基础与技巧

创建版本库

$ git clone <url> #克隆远程版本库
$ git init #初始化本地版本库

修改和提交

$ git status #查看状态
$ git diff #查看变更内容
$ git add . #跟踪所有改动过的文件
$ git add <file> #跟踪指定的文件
$ git mv <old> <new> #文件改名
$ git rm <file> #删除文件
$ git rm --cached <file> #停止跟踪文件但不删除
$ git commit -m “commit message” #提交所有更新过的文件
$ git commit --amend #修改最后一次提交

查看提交历史

$ git log #查看提交历史

$ git log -p <file> #查看指定文件的提交历史

$ git blame <file> #以列表方式查看指定文件的提交历史

撤消

$ git reset --hard HEAD #撤消工作目录中所有未提交文件的修改内容
$ git checkout HEAD <file> #撤消指定的未提交文件的修改内容
$ git revert <commit> #撤消指定的提交

分支与标签

$ git branch #显示所有本地分支
$ git checkout <branch/tag> #切换到指定分支或标签
$ git branch <new-branch> #创建新分支
$ git branch -d <branch> #删除本地分支
$ git tag #列出所有本地标签
$ git tag <tagname> #基于最新提交创建标签
$ git tag -d <tagname> #删除标签

合并与衍合

$ git merge <branch> #合并指定分支到当前分支
$ git rebase <branch> #衍合指定分支到当前分支

远程操作

$ git remote -v #查看远程版本库信息
$ git remote show <remote> #查看指定远程版本库信息
$ git remote add <remote> <url> #添加远程版本库
$ git fetch <remote> #从远程库获取代码
$ git pull <remote> <branch> #下载代码及快速合并
$ git push <remote> <branch> #上传代码及快速合并
$ git push <remote> :<branch/tag-name> #删除远程分支或标签
$ git push --tags #上传所有标签

如何让派生的项目与上游代码库保持同步

1). 在 Fork 的代码库中添加上游代码库的 remote 源,(操作一次就可以,以后不必每次添加)

git remote add upstream
git://gitcafe.com/username/upstream

upstream 表示上游代码库名称

2). 本地修改和提交 (commit)

3). 在每次 Pull Request 前做如下操作,即可实现和上游版本库的同步。

git remote update upstream

git rebase upstream/master

如果不是 master 分支,请把 master 改为相应的分支名,

同时在 rebase 前用 git checkout 命令切换到相应的本地分支

4). Push 代码到 GitCafe

git push

复制版本库

如果你不想派生项目,而只是想复制一份相同的源代码,或者想从别的 Git 托管服务那里复制一份源代码到 GitCafe 上的话,可以通过以下步骤来操作。

1). 从原地址克隆一份裸版本库,当然你也可以把托管于其它 git 服务器上的版本库克隆下来。

git clone --bare
git://gitcafe.com/username/project.git

2). 然后到 GitCafe 服务器上创建一个新项目。

3). 以镜像推送的方式上传代码到 GitCafe 服务器上。

cd project.git

git push --mirror [email protected]/username/newproject.git

4). 删除本地代码

cd ..

rm -rf project.git

如何应对 Git 操作时候的 HTTP 错误

HTTP Errors

如果你在使用 HTTP 协议进行 Git 操作的时候出现错误提示:

401 错误:

$ git push origin master
error: RPC failed; result=22, HTTP code = 401
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

403 错误:

$ git push origin master
error: RPC failed; result=22, HTTP code = 401
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

上面2个错误有以下几个可能导致的:

Git 版本过低。GitCafe 推荐使用的 Git 版本是 >= 1.7,请参考这里获取最新版本。

$ git --version
git version 1.8.2.1

远程仓库路径设置错误。注意,GitCafe 对于路径的识别是大小写敏感的。

查看已有的远程仓库:

$ git remote -v
origin  https://gitcafe.com/GitCafe/help.git (fetch)
origin  https://gitcafe.com/GitCafe/help.git (push)

设置新的远程仓库路径:

$ git remote set-url origin https://gitcafe.com/GitCafe/Help.git

查看新的远程仓库路径:

$ git remote -v
origin  https://gitcafe.com/GitCafe/Help.git (fetch)
origin  https://gitcafe.com/GitCafe/Help.git (push)

对该仓库没有访问权限。检查你是否对目标仓库有相应的读写权限。

输入了错误的用户名和密码。检查你是否使用了对该仓库有写权限的正确的账户名称和密码,检查是否对所有你名下的仓库均不能访问。

411 错误:

error: RPC failed; result=22, HTTP code = 411
fatal: The remote end hung up unexpectedly

这个错误是因为是由于上传的包过大 HTTP 的头出错导致的。

解决方法:

需要设置http.postBuffer,设置为50MB就可以了

git config http.postBuffer 524288000

你可能感兴趣的:(Git使用基础与技巧)