visual-sourcesafe

How do I sync between VSS and SVN

走远了吗. 提交于 2019-12-09 15:56:58
问题 I am forced to use VSS at work, but use SVN for a personal repository. What is the best way to sync between VSS and sync? 回答1: To get rid of the manual merge step, I could use a separate svn branch (svn://branches/VSS) as follows: Create a working copy of svn://branches/VSS Do a VSS Get Latest on this working copy svn commit svn merge from svn://trunk svn commit Do a VSS diff and checkout all files (without overwriting) with differences Check in those files reintegrate svn://branches/VSS into

Sourcesafe command line options

谁说胖子不能爱 提交于 2019-12-09 11:39:29
问题 I am having an issue with the Microsoft Visual Sourcesafe command line options that I'm hoping someone has run across and can assist me with. I have the following line in a DOS batch file. "c:\Program Files\Microsoft Visual SourceSafe\ss.exe" GET "$/Development Projects/Activity" -GL"C:\Compile\Activity" -R -Q -Yname,password When this line is executed in the batch file the following prompt appears ... Set C:\Compile\Activity as the default folder for project $/Development Projects/Activity?

Moving from VSS to SVN

时光毁灭记忆、已成空白 提交于 2019-12-09 10:16:40
问题 I need to write a script to make a source safe project ready to be moved to subversion, what do I need to do so far I can think of: remove .scc files remove .vspcc files Do I need to remove the "read-only" attribute of all the files as well, or will that not matter? What language would you write this script in, I was planning to do it in python (os.walk is great), but maybe powershell would be more appropriate to chnage file attributes on windows (if I need to)? Is there anything else you can

Working with Subversion the same as with Visual Source Safe in Visual Studio

我与影子孤独终老i 提交于 2019-12-08 17:01:03
问题 At work I just started using Subversion with AnkhSVN instead of Visual Source Safe. I managed to integrate it well enough but it doesn't seem the same. Using VSS the following would happen: A user check out a file by right clicking and selecting "check out" or by editing it. If another user tried to modify the same file he would get an error. No 2 users could edit the same file at the same time. No fancy merging. No conflicts and no conflict resolutions. I understand the the philosophy behind

What is the state of Visual Studio 2012 RC integration with SourceSafe?

懵懂的女人 提交于 2019-12-08 09:25:44
问题 I've installed Visual Studio 2012 RC and tried to do some work on one of my 'work' projects. It seems to work but after showing some upgrade screens and a Source Safe Login box Visual Studio 2012 RC crashes silently. So my question is, what is the source safe support of Visual Studio 2012. Should it just work or could it be not supported? Any pointers to blogs and official release would be really appreciated 回答1: Visual SourceSafe is supported with Visual Studio 2012. Could you install the

Visual Studio 2015 Professional and Visual SourceSafe (VSS)

不问归期 提交于 2019-12-08 07:26:49
问题 I have a need to sync up with a legacy source control which is using VSS. I cannot find any documentation on how to get/enable VSS in Visual Studio 2015 Professional (from MSDN license). I have looked at the dropdown in the Source Control menu, under Tools -> Options, and the only plugins that exist there are Microsoft Git Provider, Microsoft Team Foundation Server, and None. 回答1: FYI - I found this: http://www.dynamsoft.com/blog/version-control-how-to/how-to-connect-visual-studio-2013-to

Automatically fetching latest version of a file on import

霸气de小男生 提交于 2019-12-08 04:11:22
问题 I have a module that I want to keep up to date, and I'm wondering if this is a bad idea: Have a module (mod1.py) in the site-packages directory that copies a different module from some other location into the site-packages directory, and then imports * from that module. import shutil from distutils.sysconfig import get_python_lib p_source = r'\\SourceSafeServer\mod1_current.py' p_local = get_python_lib() + r'\mod1_current.py' shutil.copyfile(p_source, p_local) from mod1_current import * Now I

Get a VSS project tree for a specified label using the command line?

隐身守侯 提交于 2019-12-08 03:30:41
问题 Similar to this question: Get all files from VSS for a given date? I am trying to write a script that get a VSS project tree for a specified label. I have this: :: Path to the SS.exe command set ss="C:\Program Files\Microsoft Visual SourceSafe\ss" :: Path to the srcsafe.ini file for the repository set SSDIR=\\Glopsvrfile01\VSS_Data :: Path to the project root in VSS set VSSRoot="$/Customers/MyCustomer/MyProject" set /p version="Please enter a SourceSafe label: " mkdir temp :: vvv Here is the

How can I exclude the bin folder from sourcesafe in a Visual Studio 2008 web application?

喜你入骨 提交于 2019-12-08 00:04:13
问题 How can I exclude the bin folder from SourceSafe in a Visual Studio 2008 web application? I want to be able to check in everything recursively from the solution node without picking up anything in the bin folder. 回答1: Right-click the folder in your project select "Exclude from project" 回答2: Yes, you could exclude files from source control in your projects. For example (In Visual Studio), if you added the ConnectionStrings.config file to your project then select the ConnectionStrings.config

Git/SVN for asp.net development instead of VSS?

守給你的承諾、 提交于 2019-12-07 16:23:34
问题 At work, we are using ASP.net 2.0 and VSS. VSS is a beast, we are continually having issues with people checking out files and there is no branching - makes it crazy. I know SVN/GIT is mainly used by open source developers, are there any downsides to ASP.NET developers using it? I have been pushing for SVN internally, but am thinking GIT might also be a great option. Our team is spread across 3 continents. 回答1: I've used Subversion in a corporate setting before with great success. I haven't