Is there an SVN command-line utility that allows you to update a given directory / repository to the latest version?
I would like to be able to remotely update our development server without having to go into remote desktop etc., as there are often times where all the RD terminals are in use, if it was command line I could do it via SSH...
Ok, so after my idea of SSHing to a server and using the svn command line client instead of remote desktop (not much of an idea tbh), me and my boss have decided it would be rather better if we could update each project from a single local web-page (this is only for our development server).
Now, I did get this to work (once), however it ...
I'm trying to setup my VisualStudio project to set the assembly version based on the latest subversion revision number as described on this page. But the version number always seems to lag one revision.
I've split out the assembly version attribute into a separate file, VersionInfo.cs, that is updated with a pre build event.
I'm using ...
Hello All,
I am quite new to version control and i am using svn as the project i am working on is hosted on svn.
In my local working copy i added a temporary file and deleted it without using svn delete (as i was unaware).
Now that file was still under version control so when I did commit my final changes to my private branch, that file...
I'm trying to browse an SVN repository without having to check it out:
Is it possible to do this locally (on Unix)?
Is this possible with ssh access?
...
I'm just getting started with CruiseControl.NET and nAnt and don't really have a good understanding of how the whole process works. We currently have most of our solutions in Visual Source 'Safe', and have the build server Label each release automatically using the AssemblyInfo file.
We're migrating our VSS projects into SVN, and have m...
I'm looking into svn externals for my company, and it seems like it would be a good feature for us to use. We have several products that often reference shared components, but have a bad habit of falling behind into older versions and even differently branched codebases sometimes.
I've read a decent bit about how they work now, and I th...
In the interests of trying to speed up my NAnt/CruiseControl.Net/Ivy continuous build process, I was hoping to get NAnt to check if my codebase has changed on my local PC after performing a NAnt-based update, and then if the code has changed, then kick off the process to re-build that project and possibly raise a flag to build all subse...
Hi, I'm using SVN 1.4.2 from command line. I created a new folder called test, and this is my folder structure:
.
|-- figures_index.aux
|-- figures_index.dvi
|-- figures_index.log
|-- figures_index.lyx
|-- figures_index.pdf
|-- figures_index.ps
|-- figures_index.tex
|-- main.lyx
|-- test
`-- thesisMain.tex
1 directory, 9 files
All fi...
My situation is this: I have a Subversion server set up at my home, and we also use Subversion at the company where I work.
At work, we use the lock/edit/unlock model (mainly because we are transitioning from Visual SourceSafe and it's easier for the moment). At the moment this is achieved by setting the 'needs-lock' property on all ad...
I would like to have the following structure in my SVN Repository
External
- MVC
- MVCConttrib
- NLog
I want every team member to be able to check out the External repository so nobody has to look up the SVN urls for the underlying projects, but I want the projects in the repository to be updated from their respective (extern...
How do each of these vcs handle renames?
I have found a lot of contradicting information stating that git tracks loc's instead of files, renames would therfefore have no meaning for it.
...
I'm using the svn:external to get projects like Nlog and Lucene.net.
They don't have a vs2008 csproj file.
I can create that one easely so I can add it to other projects.
Is it now possible to add this 2008 project file to our internal source control?
...
Me and my friend using flex builder (eclipse based) with subclipse for a project.
Before committing I always update but sometimes I could not commit because of conflicts. Then I use Team->Synchronize with Repository and it shows at the right side latest from repository and at the left side the my current working copy. It has a button...
I have been tasked with figuring out how many lines of code I've written this year. Not very exciting for a number of reasons, but it seems like it could make a nice SO question.
So in your favorite version control tool, how do you tell how many lines of code have been modified? In my particular answer blank lines and comments happen...
We are managing our software versions as branches in Subversion. The latest upcoming release is the trunk. Older released versions are a branch (also tagged per build and release). When a developer is fixing a bug in an older version, it is his responsibility to merge the fix into the trunk. In case this step is missed, it is hard to not...
Hi, I'm using command line svn verison 1.4.2 to manage my working copy. Today, I cut some files from folder A to folder B. Where folder A is already under version control and folder B is not.
I used "svn st" to check status, and not surprisingly found these file from folder A were marked as "!". According to the svnbook from red-bean.co...
Hi
Every time I checkout my site from my repository. I notice most of my files that I have are excluded. So I have to go hunt down every file and include it in the project. This is very annoying.
I am using Subversion and tortiseSVN for windows.
What do I need to do to stop this?
...
Hi, if I update an ASP.Net application or even just a virtual directory containing XML files, ASP.Net will not serve any pages for that application until the update is done. Why?
Can it be prevented with some .Net code? Does VSS behave better?
My clients can't use the website while I update simple XML files. Very inefficient.
Carl
...
I have a single SVN repository with the following current structure:
project1
branches
trunk
tags
project2
branches
trunk
tags
which originally had this structure:
project
branches
trunk
proj1
proj2
tags
That is, the project was split into two separate "subrepositories" (or whatever you want to call that)
Is there any wa...