Git repository with git directory stored elsewhere

后端 未结 5 901
栀梦
栀梦 2020-12-31 17:48

I\'m sorry if this is a duplicate, I\'ve searched google and SO and couldn\'t find anything similar since it\'s a fairly generic set of words to search for!

What I w

5条回答
  •  春和景丽
    2020-12-31 18:41

    I do not know if that is possible, I'm quite a newbie on VCSes.

    But you can tell the other VCS to ignore files, for CVS make a .cvsignore file:

    .git
    *ignore_me*
    

    for SVN use

    $ svn propset svn:ignore -F .cvsignore .
    

    Hope this helps.

提交回复
热议问题