该答案提供了一些有趣的命令,这些命令基于git am
示例并逐步给出。
目的
- 您想要将部分或全部文件从一个存储库移动到另一个存储库。
- 您想保留他们的历史。
- 但是您并不关心保留标签和分支。
- 您接受重命名文件(和重命名目录中的文件)的有限历史记录。
程序
- 使用以下格式提取电子邮件格式的历史记录
git log --pretty=email -p --reverse --full-index --binary
- 重组文件树并更新历史记录中的文件名更改[可选]
- 应用新的历史记录,使用
git am
1.以电子邮件格式提取历史记录
例如:提取物的历史file3
,file4
和file5
my_repo
├── dirA
│ ├── file1
│ └── file2
├── dirB ^
│ ├── subdir | To be moved
│ │ ├── file3 | with history
│ │ └── file4 |
│ └── file5 v
└── dirC
├── file6
└── file7
清理临时目录目标
export historydir=/tmp/mail/dir # Absolute path
rm -rf "$historydir" # Caution when cleaning
清理您的回购源
git commit ... # Commit your working files
rm .gitignore # Disable gitignore
git clean -n # Simulate removal
git clean -f # Remove untracked file
git checkout .gitignore # Restore gitignore
提取电子邮件格式的每个文件的历史记录
cd my_repo/dirB
find -name .git -prune -o -type d -o -exec bash -c 'mkdir -p "$historydir/${0%/*}" && git log --pretty=email -p --stat --reverse --full-index --binary -- "$0" > "$historydir/$0"' {} ';'
不幸的是选项--follow
或--find-copies-harder
不能与组合使用--reverse
。这就是为什么在重命名文件(或重命名父目录)时剪切历史记录的原因。
之后:电子邮件格式的临时历史记录
/tmp/mail/dir
├── subdir
│ ├── file3
│ └── file4
└── file5
2.重新组织文件树并更新历史记录中的文件名更改[可选]
假设您要将这三个文件移到另一个仓库中(可以是相同的仓库)。
my_other_repo
├── dirF
│ ├── file55
│ └── file56
├── dirB # New tree
│ ├── dirB1 # was subdir
│ │ ├── file33 # was file3
│ │ └── file44 # was file4
│ └── dirB2 # new dir
│ └── file5 # = file5
└── dirH
└── file77
因此,重新组织您的文件:
cd /tmp/mail/dir
mkdir dirB
mv subdir dirB/dirB1
mv dirB/dirB1/file3 dirB/dirB1/file33
mv dirB/dirB1/file4 dirB/dirB1/file44
mkdir dirB/dirB2
mv file5 dirB/dirB2
您的临时历史记录现在为:
/tmp/mail/dir
└── dirB
├── dirB1
│ ├── file33
│ └── file44
└── dirB2
└── file5
还要更改历史记录中的文件名:
cd "$historydir"
find * -type f -exec bash -c 'sed "/^diff --git a\|^--- a\|^+++ b/s:\( [ab]\)/[^ ]*:\1/$0:g" -i "$0"' {} ';'
注意:这将重写历史记录以反映路径和文件名的更改。
(即,在新仓库中更改新位置/名称)
3.应用新的历史记录
您的其他回购是:
my_other_repo
├── dirF
│ ├── file55
│ └── file56
└── dirH
└── file77
应用来自临时历史记录文件的提交:
cd my_other_repo
find "$historydir" -type f -exec cat {} + | git am
您的其他仓库现在是:
my_other_repo
├── dirF
│ ├── file55
│ └── file56
├── dirB ^
│ ├── dirB1 | New files
│ │ ├── file33 | with
│ │ └── file44 | history
│ └── dirB2 | kept
│ └── file5 v
└── dirH
└── file77
采用 git status
看被推提交准备的金额:-)
注意:由于历史记录已被重写以反映路径和文件名的更改:(
即与上一个仓库中的位置/名称进行比较)
- 无需
git mv
更改位置/文件名。
- 无需
git log --follow
访问完整的历史记录。
额外的技巧:在您的仓库中检测重命名/移动的文件
列出已重命名的文件:
find -name .git -prune -o -exec git log --pretty=tformat:'' --numstat --follow {} ';' | grep '=>'
更多自定义:您可以git log
使用选项--find-copies-harder
或完成命令--reverse
。您也可以使用cut -f3-
并grepping完整模式'{。* =>。*}' 删除前两列。
find -name .git -prune -o -exec git log --pretty=tformat:'' --numstat --follow --find-copies-harder --reverse {} ';' | cut -f3- | grep '{.* => .*}'