开发者

How to commit the binaries to svn?

开发者 https://www.devze.com 2023-03-30 16:38 出处:网络
I am trying to commit the binaries out of my C++ project, but the debug folder is always ignored. Yes I know that isn\'t suggested to do that, but in my case it is required.

I am trying to commit the binaries out of my C++ project, but the debug folder is always ignored.

Yes I know that isn't suggested to do that, but in my case it is required.

I have tried to add the folder with in the project settings or delete the patterns out of the ignored resources.开发者_运维百科

Also I have tried to use the context menu with team -> add to version control.

But all ways don't work for me.

Thanks for any advices.


Get the command line SVN client and do:

svn add /path/to/debug


I suggest you store the files in an FTP site and write an rsync script to automatically sync the local directory after making the checkout from the SVN server.

0

精彩评论

暂无评论...
验证码 换一张
取 消