如何将reposA的子目录合并到reposB的根目录?

时间:2017-05-12 15:19:03

标签: git

我有两个存储库 - reposA和reposB,结构如下。

CREATE INDEX idx_game_totals_me_friend_count
  ON game_totals(me, friend, count)
  WHERE status IN ('pending', 'done');

我想将文件从A合并到B,然后结构就像那样

reposA\  
       sub_dict\  
                A1.txt   
                A2.txt    

reposB\         
       READ.ME

我将reposA添加为我的远程上游并使用git read-tree进行合并,我做到了。

以下是我的命令:

reposB\
       READ.ME  
       A1.txt   
       A2.txt 

在Step.4中,reposB的根目录已经与reposA的sub_dict具有相同的文件。

但是,当reposA添加新文件A3.txt时。我不知道如何将A3.txt拉到reposB。

错误消息是:

  

错误:条目“XXX”与“XXX”重叠。无法绑定。

0 个答案:

没有答案