I am kind of new to SVN, I haven't used it in detail basically just checking out trunk and committing then exporting and deploying.
I am working on a big project now with several developers and we are looking for the best deployment process. The one thing we are hung up on is the best way to tag, branch and so on. We are used to CVS whe...
Is there a way to get a nice list of all commit messages sorted by file? Something like this (as you can see, I don't want the messages specific to a certain file, just show messages for the entire commit if the file was part of the commit, repeats ok):
-- index.php
2010-01-02 03:04:05
* added new paragraph
2010-01-01 03:0...
I am using TortoiseSVN and I have a SVN repository organized in this way:
folder1
folder2
trunk
tag
branches
folder3
trunk
tag
branches
folder4
folder5
trunk
tag
branches
I would like to know if there is a way to checkout only trunk directories, keeping the entire tree under the vers...
My project in rep:
project/dir A/
project/dir B/
(MacOSX) Locally:
project/dir A/
~/somewhere/dir B/
Workflow:
Don´t forget to copy "~/somewhere/dir B/" to "project/dir B/" before commit...
Alias? Script? Flag? Easiest solution wins as always.
...
I sometimes found our Hudson will not pull up-to-date versions of files from SVN to build up the package. For example, current latest revision is 1201, but Hudson use 1200 to build.
Do you know the reason behind the scenes?
...
We have distributed team with client and contractor term in different location. The client has sufficient license for TFS system and they use it for development.
We do not have sufficient license to use the TFs so we use the local Subversion and it works fine.
The problem is merging the two source is always painful. Any tips shall be a...
I often do code review in the following way:
Open the SVN log
Select a revision
Double click on a file...
...and wait
See the changes
Goto 2 or 3 or finish
The 4th step is very annoying. Do you know a solution for this?
...
I'm currently working on a project that has a svn repository. I'm used to git and love the way it allows me to have a local repository, so I would like to use git-svn with this project.
I would like to know how to use git-svn from a svn project already in my computer. Do I really need to make a clone and start from there? Or can I just ...
I've heard a few places that one of the main ways distributed version control systems shine, is much better merging than traditional tools like SVN.
Is this actually due to inherent differences in how the two systems work, or do specific DVCS implementations like Git/Mercurial just have cleverer merging algorithms than SVN?
...
I'm trying to reintegrate a development branch into the trunk in my Subversion 1.5 repository. I merged all the changes from the trunk to the development branch prior to this operation. Now when I try to reintegrate the changes from the branch I get the following error message:
Command: Reintegrate merge https://dev/svn/branches/devel i...
If you're familiar with the excellent Aptana Studio IDE, you know it's based on Eclipse. You also know it comes pre-packaged with SFTP capability. I need to work on a remote server, where I have Apache installed; SFTP is ideal for this.
I've installed the Subclipse plugin, and I can access and checkout projects from the Repo. I can crea...
Recently I was searching on how to secure svn repository, or otherwords how to enable ssl connection to svn repository for a windows server 2003. Does it make more sense to use Linux server instead?
...
I'm using SVN for a project, and for easy deployments to the server we're just using another SVN enlistment there. So I've been using Remote Desktop to log onto the server and then trigger an update (we use Tortoise SVN).
Is there an existing tool (or SVN feature) that would allow me to trigger this update without logging on to the ser...
I'm running git 1.7 on Mac OSX, installed via Homebrew. I'm trying to use git svn to work with a Subversion server that requires Subversion 1.5 clients (a restriction enforced via a pre-commit hook.)
Running git svn --version reveals that as far as git is concerned, git svn is equivalent to svn v1.4.4.
I can't establish whether git svn...
Hi all,
I need to do a svn checkout,say
svn checkout svn://XYZ.com/trunk.
I am using the svn client from behind the proxy. I had accessed other repositries using the http protocol in past but with svn protocol,it fails with "Connection Refused", reason I think being the port not allowed by the proxy.Nonetheless, the HTTP protocol is ...
I often read that Hg (and Git and...) are better at merging than SVN but I have never seen practical examples of where Hg/Git can merge something where SVN fails (or where SVN needs manual intervention). Could you post a few step-by-step lists of branch/modify/commit/...-operations that show where SVN would fail while Hg/Git happily move...
I seem to see such errors quite often in our SVN 1.6 repo. We got these quite a lot while we used to just work on /trunk so I don't think it's due to merge/branching confusion. It seems that a cleup and marking the conflict resolved always works, but it's a little concerning to see errors in your version control system when you're just a...
We're pretty happy with SVN right now, but Joel's tutorial intrigued me. So I was wondering - would it be feasible in our situation too?
The thing is - our SVN repository is HUGE. The software itself has a 15 years old legacy and has survived several different source control systems already. There are over 68,000 revisions (changesets),...
I've got a project running and we're using SVN as the version control. There are 3 devs on it.
Dev1 = OSX + Textmate
Dev2 = Windows 7 + Dreamweaver (plus tortoise svn)
Dev3 = OSX + Coda
Case 1 (expected):
Dev1 and dev3 work on a file called signup.php. They work on different parts of the file. Dev1 commits it and dev3 updates their ...
SVN uses the svn:executable property to set the executable flag upon checkout or update. This just happens for the user permissions.
How can I get SVN to also set the executable flag for the group?
...