Git/Repo应用场景技巧

1. 将代码回退到特定时间点

背景:当项目代码在开发过程中出现了问题,而清楚记得某一个时间的的代码未出现该问题。于是想将代码回退到该时间节点前。

可使用如下命令:

repo forall -c 'commitID=`git log --before "yyyy-mm-dd hh:mm" -1 --pretty=format:"%H"`; git reset --hard $commitID'

2. 解决打补丁时的冲突

背景: 当在打补丁的过程中遇到冲突时,可以通过如下方式解决冲突:

git am xxxxx.patch //Error because of conflict
git apply --reject xxxxx.patch //then files not conflict in this commit will merge into local
git status//find which files is modified
//fix the conflicts
git add -u
git am --resolved xxxx.patch

3. 使用代理下载git仓库

背景:当下载国外代码时下载不动时,比如Android系统源码,可以通过代理方式下载:

git config --global http.proxy 'socks5://127.0.0.1:1080'

4. 设置git的颜色

背景:当使用git diff时,发现代码颜相同难以区分时:

git config --global color.ui auto

5. 迁移上传gerrit代码

背景: 将老服务器的代码提交到gerrit服务器中的代码中,仅创建一条新分支与老服务器的分支匹配

  1. 修改.repo/repo/subcmds/forall.py文件,变量REPO_PROJECT有对应的仓库名,只需要修改前缀即可,这里创建新变量REPO_TEST,要使用ssh,否则每个仓库提交将会需要密码
  2. 使用命令创建新remote地址,repo forall -c 'git remote add [新远程地址名] $REPO_TEST'

3. repo forall -c 'git push [新远程名] [当前分支名]:[需要上传至服务器的分支名]'

6. 修改指定commit的内容

#!/bin/bash

change-commit-msg(){

  commit="$1"
  newmsg="$2"
  branch="master"

  git checkout $commit
  git commit --amend -m "$newmsg"
  git cherry-pick $commit..$branch
  git branch -f $branch
  git checkout $branch
}

7. Git合并多个提交

git rebase -i HEAD~2

提示如下:

pick c6e4557 create second.txt
pick e1a7dfa add text in second.txt

# Rebase a71eba2..e1a7dfa onto a71eba2
#
# 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操作,git会应用这个补丁,以同样的提交信息(commit message)保存提交
  • 选择reword操作,git会应用这个补丁,但需要重新编辑提交信息
  • 选择edit操作,git会应用这个补丁,但会因为amending而终止
  • 选择squash操作,git会应用这个补丁,但会与之前的提交合并
  • 选择fixup操作,git会应用这个补丁,但会丢掉提交日志
  • 选择exec操作,git会在shell中运行这个命令

对比之前的两个提交提交,我觉得第一个提交可以保留,第二个合并到第一个就可以了。

将第二个pick改成squash或者s,然后保存退出。如下:

pick c6e4557 create second.txt
s e1a7dfa add text in second.txt

此时git会自动将第二个提交合并到第一个提交,并弹出合并提示信息,如下:

# This is a combination of 2 commits.
# The first commit's message is:

create second.txt

# This is the 2nd commit message:

add text in second.txt

# 请为您的变更输入提交说明。以 '#' 开始的行将被忽略,而一个空的提交
# 说明将会终止提交。
#
# 日期:  Mon Nov 28 13:59:43 2016 +0800
#
# 变基操作正在进行中;至 a71eba2
# 您在执行将分支 'master' 变基到 'a71eba2' 的操作时编辑提交。
#
# 要提交的变更:
#   新文件:   second.txt
#

如果需要修改下提交信息,如果不需要直接保存退出即可。

当需要更换提交的顺序也可以通过以上方法实现。

8. 添加ssh远程地址脚本

str=`git remote -v | head -n 1 | awk -F ' ' '{print $2}'`
prefix="http://gerrit.xxxxxxx.com:[端口]/" #原本的远程地址前缀
suffix=${str#$prefix} #获取仓库目录
gerritprefix="ssh://username@xxx.com:[端口]/" #需要替换的ssh前缀
git remote add gerrit $gerritprefix$suffix
echo "add remote address succeed"

9. 创建远程tag以及分支

  • step 1:为每个仓库创建ssh远程地址
$ repo forall -c 'git remote add [remote address name] ssh://[username]@xxxx/$REPO_PROJECT' --no-verify
  • step 2:创建本地Tag
$ repo forall -c 'git tag -a "[tag name]" -m "[comment]"'
  • step 3:推本地tag到远程服务器
$ repo forall -c 'git push [remote address name] [tag name]'
  • step 4:根据tag名创建本地分支
$ repo forall -c 'git branch [new branch name] [tag name]'
$ repo forall -c git checkout [tag name]

或者可以直接使用:

$ repo forall -c 'git checkout -b [new branch name] [tag name]'
  • step 5: 推本地分支到远程
$ repo forall -c 'git push [remote address name] [new branch name]'

10 上传代码时提示”expected old/new/ref”

背景:当上传代码至服务器时,提示如下:

 protocol error: expected old/new/ref

可以使用如下命令解决:

$ git fetch [remote address] --unshallow

11. 修改仓库分支名

11.1 修改非当前分支名

git branch -m [old name] [new name]

11.2 修改当前分支名

git branch -m [new name]

12. 将远程服务器改为可强推

当有时候推代码到服务器时,会提示fast-forward的问题,可以通过修改服务器代码允许强推。修改仓库xx.git/config文件,将如下字段修改为false

[receive]
    denyNonFastforwards = false

此时可通过git push -f 来强制推送代码。如果需要将本地分支强制推到远程服务器某分支上,可以使用如下命令:

$ git push -f [remote] [修改后的分支]:[远程分支]

13. dst refspec matches more than one

有时候当需要修改远程服务器分支时,会遇到如下提示:

dst refspec matches more than one

这样的提示很有可能是tag名与branch名相同,导致目的地址模糊。

这时候,可以先将远程分支先删除,然后将本地分支再推送上去。用如下方式删除远程分支:

$ git push [remote] :refs/heads/[remote branch]

如果不加上”refs/heads”,那么还是会出现matches more than one的提示。

$ git push [remote] :[remote branch]

此后再去上传分支至远程分支时,也需要以这种方式:

$ git push -f origin [remote]:refs/heads/[remote branch]
    原文作者:西瓜大佬
    原文地址: https://segmentfault.com/a/1190000014270269
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞