我现在遇到的问题是这样的,我要在两台电脑上进行开发,我准备使用Git来进行版本管理以及两台电脑的同步,那么我第一次在电脑A创建工程(VS工程)后,我把电脑A的工程用Git管理,这个时候我不想管理.sln文件,如果我不把.sln放到Git中,那么我在电脑B上就不能打开那个工程。
这样的问题该如何解决,是要把sln文件一起管理起来吗?还是用CMake?
黄舟2017-05-02 09:23:26
If you use cmake, of course you don’t need sln/prj, cmake will generate the project file.
If there are no other management tools, projects using vs require sln/prj, etc.
滿天的星座2017-05-02 09:23:26
According to the description of the questioner, it seems that this sln file will not change (well, I admit that I am not engaged in related development...). If this is the case, wouldn't it be enough to copy it to another computer after initialization? .
PHP中文网2017-05-02 09:23:26
Let’s not talk about git first. The project created by vs must contain .sln
文件,即解决方案文件,在vs中才可以打开。不用使用什么cmake
,这么麻烦,把.sln
文件加入git版本控制中就ok了,这样即使别人fork你的代码,仍旧可以直接使用,岂不是更好? 如果的确有需要忽略,不希望加入版本控制的文件,那么使用.gitignore
files to solve the problem.