如何创建与GIT Server Repo结构不同的GIT Local Repo

时间:2016-11-14 10:25:16

标签: eclipse git github

这种要求的原因是我们正在使用专有产品,该产品仅在插件提供的自定义Eclipse透视图中支持Eclipse Project中的特定结构。

现在为了便于阅读,我们希望将特定文件夹包含在某些文件中。

仅要检入的文件夹(不是专有插件创建的Eclipse项目)

现在说我的Eclipse项目文件夹是:

    Proj
      |__Folder1
              |__file1    
              |__file2
              |__Folder2
                    |__file3

我想存储:

     git
      |__Different_Folder_Name_Folder1
      |       |__file2    
      |
      |__Different_Folder_Name_Folder2
              |__Different_file_name_file1
              |__Different_file_name_file3  

问题:

  1. 我应该将所需结构存储在Local Repo或GIT服务器Repo中吗?
  2. 根据之前的回答,如何

        a. create and maintain these separate structure? and 
        b. keep sync between these separate structures?(clone/pull/fetch/commit/push)
    
  3. 注意:我几乎是GIT的新手。因此,请不要对此查询进行投票。       我也不问如何在同一文件夹中的dev / prod之间切换。       如果这种方法错了,那么也欢迎提出建议

1 个答案:

答案 0 :(得分:1)

这是不可能的。

即使您的愿望存在一个解决方案,也不是最佳做法。