问题描述
我正在使用Accurev作为VCS开展一个项目。由于我对它一点都不熟悉,所以我想知道在内部使用git是否是个好主意 - 这意味着我将在本地使用git,然后执行与Accurev的官方提交。
这是一个好的方法吗?
如果是的话,我当然想要从Accurev版本中排除git。 .acignore看起来像这样就足够了:
myproject / .git
myproject / .git / *
myproject / .gitignore
谢谢!
您应该可以并排使用git和AccuRev。但是,mignt需要调整.acignore,但是。
从AccuRev帮助文件中:
I’m working on a project using Accurev as a VCS. Since I’m not at all familiar with it, I’m wondering if it would be a good idea to use git "internally" - meaning I would use git locally, then doing the "official" commits with Accurev.
Would this be an OK approach?
If yes, I would naturally want to exclude git from the Accurev versioning. Is it sufficient to have a .acignore that looks something like this:
myproject/.git
myproject/.git/*
myproject/.gitignore
Thanks!
You should be able to use git and AccuRev side-by-side. You mignt need to tune your .acignore, though.
From the AccuRev Help files:
这篇关于Accurev外部,git内部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!