将未跟踪的文件夹复制到另一个分支

ris*_*sto 7 git deployment continuous-integration branch wercker

有没有办法将未跟踪的文件夹复制到另一个分支?

我知道您可以通过执行以下操作将跟踪的文件夹复制到另一个分支:

git checkout mybranch
git checkout master -- myfolder
Run Code Online (Sandbox Code Playgroud)

但有没有办法复制一个在master 上跟踪但在我要复制到的分支上跟踪的文件夹?

我正在尝试为GitHub页面执行此操作,并且我正在遵循本指南,但他承诺掌握并将其推送到上游gh-pages.我不想那样做.我只是希望我的构建生成文档并将未跟踪的文档复制到另一个分支,然后将它们推送到上游.

Kaz*_*Kaz 3

这里的情况是,您有一些未跟踪的文件与另一个分支中的跟踪文件冲突。你想切换到那个分支,但checkout不让你这么做。

git 中的“第一级”解决方案是将这些未跟踪的文件提升到索引:

git add folder
Run Code Online (Sandbox Code Playgroud)

现在您仍然无法到分行结帐。但是,您将面临一种新的可能性:您可以进行git stash save更改:

git stash save
Run Code Online (Sandbox Code Playgroud)

现在您可以切换到分支,并执行git stash pop. 此时,您可以处理合并冲突(如果有),然后按 agit reset即可完成。

[更新:不是git add必需的,因为git stash可以选择包含未跟踪的文件!]

让我们看一个完整的示例,其中涉及一个名为 的文件topicfile,该文件仅存在于分支中,并在 on 时创建为工作文件master,但内容不同:

~$ mkdir gittest
~$ cd gittest/
~/gittest$ git init
Initialized empty Git repository in /home/kaz/gittest/.git/
~/gittest$ touch emptyfile
~/gittest$ git add emptyfile
~/gittest$ git commit -m "starting repo"
[master (root-commit) 75ea7cd] starting repo
 0 files changed
 create mode 100644 emptyfile
~/gittest$ git branch
* master
~/gittest$ git checkout -b topic
Switched to a new branch 'topic'
~/gittest$ cat > topicfile
a
b
c
d
e
~/gittest$ git add topicfile
~/gittest$ git commit -m "topicfile"
[topic 875efc5] topicfile
 1 file changed, 5 insertions(+)
 create mode 100644 topicfile
~/gittest$ git checkout master
Switched to branch 'master'
~/gittest$ ls
emptyfile
~/gittest$ cat > topicfile
@
a
b
c
d
e
f
g
h
~/gittest$ git add topicfile
~/gittest$ git stash save topicfile
Saved working directory and index state On master: topicfile
HEAD is now at 75ea7cd starting repo
~/gittest$ git checkout topic
Switched to branch 'topic'
~/gittest$ git stash pop
Auto-merging topicfile
CONFLICT (add/add): Merge conflict in topicfile
~/gittest$ cat topicfile
<<<<<<< Updated upstream
=======
@
>>>>>>> Stashed changes
a
b
c
d
e
<<<<<<< Updated upstream
=======
f
g
h
>>>>>>> Stashed changes
~/gittest$ cat > topicfile  # resolve in favor of stashed changes:
@
a
b
c
d
e
f
g
h
~/gittest$ git add topicfile
~/gittest$ git reset
Unstaged changes after reset:
M       topicfile
~/gittest$ git diff
diff --git a/topicfile b/topicfile
index 9405325..bea0ebb 100644
--- a/topicfile
+++ b/topicfile
@@ -1,5 +1,9 @@
+@
 a
 b
 c
 d
 e
+f
+g
+h
Run Code Online (Sandbox Code Playgroud)

此时我们可以将topicfile更改提交到topic分支,并且该文件仍然没有在 上被跟踪master

由于 中存在冲突git stash pop,所以藏匿仍然存在。我们可以用 清除它git stash drop

所有这一切的替代方案不仅是将git add未跟踪的文件添加到索引,而且还对其git commit进行正确的提交。然后我们可以将提交挑选到分支中。如果我们不希望在 上跟踪这些文件master,那也没关系:稍后我们可以git reset --hard HEAD^在 master 上消除该提交。