svn

Release management in SVN

て烟熏妆下的殇ゞ 提交于 2019-12-18 10:14:32
问题 When I look in the SVN log I really wish I could see markers that tell me when releases were done. I've seen this in other version control systems such as PVCS and Perforce. Can this be done in SVN? I've done a little bit of research and so far it looks like this sort of thing is not supported. Edit We don't want to have to copy our source to a different folder for each release. This results in a huge amount of unnecessary duplication of files on the developers machine and only gives us a

Subversion rebase?

谁说我不能喝 提交于 2019-12-18 10:13:50
问题 I find this way easier to merge branches and less conflicts: Copy trunk to a new branch, merge it with feature branch/s. When things done, merge the new branch back to the trunk. This technique is quite like the mercurial and git rebasing. I used to merge whatever changs from trunk to feature branche/s. But later when I merged the feature branch back to trunk, some of the stuff from trunk would be merged back again to the trunk, which caused a lot of conflicts. There is a choise of

Python package install using pip or easy_install from repos

对着背影说爱祢 提交于 2019-12-18 10:12:06
问题 The simplest way to deal with python package installations, so far, to me, has been to check out the source from the source control system and then add a symbolic link in the python dist-packages folder. Clearly since source control provides the complete control to downgrade, upgrade to any branch, tag, it works very well. Is there a way using one of the Package installers (easy_install or pip or other), one can achieve the same. easy_install obtains the tar.gz and install them using the

Windows Pre-commit hook for comment length Subversion

扶醉桌前 提交于 2019-12-18 10:11:44
问题 I seem to be getting nowhere with this. Either searching the web for a script, etc. Anyone got a script that you can just edit the out-of-box pre-commit.tmpl in a Windows environment that requires x chars to be entered in for a comment on commit in Tortoise Subversion globally so that all members on the team are required whereas this requirement is pushed down to the clients from SVN server? I don't know the scripting language and this should be something pretty damn simple without me taking

What svn command would list all the files modified on a branch?

耗尽温柔 提交于 2019-12-18 10:10:34
问题 In svn, I have a branch which was created, say at revision 22334. Commits were then made on the branch. How do I get a list of all files that were changed on the branch compared to what's on the trunk? I do not want to see files that were changed on the trunk between when the branch was created and "now". 回答1: This will do it I think: svn diff -r 22334:HEAD --summarize <url of the branch> 回答2: You can also get a quick list of changed files if thats all you're looking for using the status

TortoiseSVN not saving authentication details

我只是一个虾纸丫 提交于 2019-12-18 10:07:35
问题 TortoiseSVN is not saving my authentication details even when I check the save authentication checkbox, and asking me to enter username and password every time I access it. How can I fix this? 回答1: I had the same issue and I simply deleted this folder: %APPDATA%\subversion\auth\ Next time I logged in it was created anew and my password was properly saved. 回答2: If you access your repo over ssh , then you can use the following solution to save your ssh credentials: The easiest way to do this is

Proper way to add svn:executable

微笑、不失礼 提交于 2019-12-18 10:01:02
问题 I have a few files that have been executable before svn adding them. They have the svn:executable property set. Now, a few other files were checked in without the executable bit do not have it, and I want to set the svn:executable property: $ svn propset svn:executable on *.cgi Then I check the status and even the files with the svn:executable have been modified: $ svn diff Property changes on: a.cgi ___________________________________________________________________ Modified: svn:executable

How do I back up a remote SVN repository

放肆的年华 提交于 2019-12-18 10:00:13
问题 I am currently moving my SVN server from my home server to my remote server so I can access it more easily from other locations. My remote server is not backed up so I want to regularly back it up to my home server. Remote server is Windows 2003 server. Home server is Windows Home Server. What is the best way to do this? can I get my home server to get a dump of the remote server every night? Bandwidth isn't a huge consideration but if I could just copy any new checkins to an SVN server on my

What tools do you use when integrating with Subversion on Windows? [closed]

被刻印的时光 ゝ 提交于 2019-12-18 09:59:31
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I'm just getting into Subversion for personal projects and am interested in knowing what tools you use that integrate with Subversion on the Windows platform. Things like visualisation, backup, IDE integration, issue tracking integration etc. Anything that extends the basic functionality of Subversion really to

SVN: Folder already under version control but not comitting?

被刻印的时光 ゝ 提交于 2019-12-18 09:57:37
问题 mark@mark-ubuntu:~/myproject$ svn stat ? runserver.sh ? media/images/icons ? apps/autocomplete mark@mark-ubuntu:~/myproject$ svn add apps/autocomplete svn: warning: 'apps/autocomplete' is already under version control svn stat says its not under version control, so I try to add it, and then it tells me it is. When I do an svn ci , it doesn't get comitted, and doesn't show up when I try to browse to repository online. How do I get it to commit? 回答1: Copy problematic folder into some backup