1

我有一个使用 git 检查历史记录的 Rails 项目。我的网页设计师同事帮助我做 html 和 css 并使用 git 检查她的项目。因此有两个 git repos 需要我检查。有时我想自己更改一些小的 css 东西。但我觉得这很糟糕,因为我需要在两个 repos 处将相同的东西提交给 git。

我如何与我的网页设计师同事合作?

文件夹目录如下:

导轨:

blog/    
  -app/
    -assets/
       -images/
       -javascripts/
       -stylesheets/
    -controllers/
    -..../    
  -config/    
  -...../

html:

blog/
   -assets/
      -images/
      -javascripts/
      -stylesheets/
   index.html
   about.html

如果我使用将html项目添加到Rails项目的子模块,我需要更改Html项目的目录结构,如何忽略Rails项目中的index.htmland about.html

4

1 回答 1

1

只需使用submodule

$ git submodule add path/to/remote/ui/repo path/to/local/ui/folder

当您需要修改部分 UI 文件时,只需 cd into 即可path/to/local/ui/folder。只需将其视为单独的回购。

于 2012-12-11T17:22:47.297 回答