【问题标题】:Git cherry pick files, from Directory A to Directory BGit 樱桃挑选文件,从目录 A 到目录 B
【发布时间】:2012-03-03 08:57:03
【问题描述】:

我有一个项目,我一直在进行一些实验性更改。到目录 A 中的子项目。但是,在项目的主分支中,子项目已移动到一个单独的目录,即目录 B。

我有大约 10 个提交我想有效地挑选到 master,但是我如何告诉 git 将旧目录放入新目录?

稍后
我试图挑选,因为我只想介绍我的更改并保持历史整洁。这不仅仅是文件移动。我还添加了新课程。它也没有检测到所有的动作。(想到的第一个文件是 pom.xml)

【问题讨论】:

  • 它应该自动检测移动(至少在合并期间)

标签: git


【解决方案1】:

您可以将这些提交转换为补丁,手动编辑补丁(用新路径替换旧路径)然后应用。

$ git init
Initialized empty Git repository in /tmp/gitt/.git/
$ mkdir olddir
$ cp /home/vi/code/_/ucontext.cpp olddir/ucontext.cpp
$ git add .
$ git commit -m "initial commit"
[master (root-commit) c0bf371] initial commit
 1 files changed, 97 insertions(+), 0 deletions(-)
 create mode 100644 olddir/ucontext.cpp

$ printf '22\na\n// Sup, /git/!\n.\nw\nq\n' | ed olddir/ucontext.cpp
1983
    if (!stacks) { stacks = stacks3; }
1998
$ git commit -am 'sample commit'
[master 83940c9] sample commit
 1 files changed, 1 insertions(+), 0 deletions(-)
$ printf '33\nd\nw\nq\n' | ed olddir/ucontext.cpp
1998
    }else{
1990
$ git commit -am 'sample commit 2'
[master 6599932] sample commit 2
 1 files changed, 0 insertions(+), 1 deletions(-)

$ git format-patch HEAD~2 --stdout > saved-commites.patch
$ git reset --hard HEAD~2
HEAD is now at c0bf371 initial commit
$ git mv olddir newdir
$ git commit -m 'rename dir'
[master bd8a77e] rename dir
 1 files changed, 0 insertions(+), 0 deletions(-)
 rename {olddir => newdir}/ucontext.cpp (100%)

$ sed -i.bak 's!\([ab]/\)olddir/!\1newdir/!g' saved-commites.patch
$ git am saved-commites.patch
Applying: sample commit
Applying: sample commit 2

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-11-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-06-26
    • 2013-05-02
    相关资源
    最近更新 更多