【发布时间】:2013-07-30 18:05:22
【问题描述】:
我需要将几个存储库(每个存储库都从 TFS 转换)合并为一个。为此,我使用 git cherry-pick 命令,该命令适用于某些提交,但不适用于其他提交:
$ git status
# On branch master
nothing to commit, working directory clean
$ git diff-tree --no-commit-id --name-only -r e2d8405
Libraries/IFileTransformer/ITransformer.cs
Libraries/IFileTransformer/IFileTransformer.csproj
Libraries/IFileTransformer/IFileTransformer.csproj.vspscc
Libraries/IFileTransformer/Properties/AssemblyInfo.cs
$ git cherry-pick e2d8405
error: could not apply e2d8405... TFS changeset 2836
hint: after resolving the conflicts, mark the corrected paths
hint: with 'git add <paths>' or 'git rm <paths>'
hint: and commit the result with 'git commit'
$ git status
# On branch master
# You are currently cherry-picking.
# (fix conflicts and run "git commit")
#
# Unmerged paths:
# (use "git add/rm <file>..." as appropriate to mark resolution)
#
# deleted by them: Libraries/IFileTransformer/ITransformer.cs
# deleted by them: Libraries/IFileTransformer/IFileTransformer.csproj
# deleted by them: Libraries/IFileTransformer/IFileTransformer.csproj.vspscc
# deleted by them: Libraries/IFileTransformer/Properties/AssemblyInfo.cs
#
no changes added to commit (use "git add" and/or "git commit -a")
$
如何找出问题所在? “他们”是谁?在我看来,e2d8405 提交删除了四个文件。如果文件存在(并且确实存在),那么应用提交的问题在哪里?
$ git checkout e2d8405^
Note: checking out 'e2d8405^'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b new_branch_name
HEAD is now at 48b5b2f... TFS changeset 2835 renamed namespace installutils to
utils
$ md5sum IFileTransformer.csproj
9f9851dc9db3bddd1e6920631fa14e8b *IFileTransformer.csproj
$ git checkout master
Previous HEAD position was 48b5b2f... TFS changeset 2835 renamed namespace ins
tallutils to utils
Switched to branch 'master'
$ md5sum IFileTransformer.csproj
9f9851dc9db3bddd1e6920631fa14e8b *IFileTransformer.csproj
【问题讨论】:
-
"Them" 是您挑选的提交。 “我们”是您选择的分支。
-
谢谢,这就是我的怀疑:提交删除了四个文件。但是那个操作的问题在哪里......?
标签: git