revision

Is the only way to list the "live" revisions of a particular SVN path "svn log -q -v" plus a filter?

Is performing an "svn log -q -v" across all revisions against the repository root and then filtering by the desired path really the best (only?) way to do this? We need to find these ranges in order to provide peg revisions to an automated tool and to add supporting detail to our change reporting. I have made a slight optimization to...

Subversion block in CruiseControl.NET - passing specific revision number?

I would like the ability to pass a specific revision to the SVN task (in ccnet.config) that I want the buildserver to checkout from SVN and build. So I don't always want the latest revision. And no, I don't want to create a tag for every successful build. Looking at the configuration elements here: http://ccnet.sourceforge.net/CCNET/Sub...

SVN: How to get the first revision of a file?

When working with a subdirectory in a repository, how to find the revision when that specific directory has been added to the repository? By using "svn info http://.." I can find out when it was modified for the last time ("Last Changed Rev"), but I also need to find out the revision number of the commit when that directory (or file) was...

SVN: Is it possible to get the list of revision numbers for given path?

I am making a PHP tool that connects to a repository, downloads the list of commits and stores them locally. However, due to the possibility that certain repositories are HUGE and grabbing their log results in long waiting time and possible time-outs/errors, I would like to download each commit message using async requests. So, I have a...

Git (TortoiseGit) - How to change the HEAD to a previous revision

Hi, When using Git with TortoiseGit: Does somebody know how to change the HEAD to a previous revision for a complete repository and/or just a single file? For example i have a repository containing multiple files. One file exists in three revisions (1 ; 2 ; 3). Now i want to change from revision 3 back to 2. TortoiseGit offers a "Reve...

Implementing article revision history for Java based web application

Any ideas of how best i can implement article revision history for a Java based web application and save it in AuditLog StackOverflow already has such a feature allowing one to see the differences from one version to another, almost like SVN clients. This is more of a design than implementation question. addition: How would one displa...

How to commit subversion revision with every commit in order to refer between two repositories.

Consider software spread in two separate repositories, Pub and Priv. Pub repository is public. Priv is closed. An continuous integration server builds both Pub and Priv when either side changes. It then creates downloadable binaries from Priv that are available to users of Pub. Those binaries are labeled internally and on the file name w...

Svn: How do I list all files ever committed to the repository?

Hello, everyone! How could I let SVN list all files which were ever committed to a repository (if possible, along with location and revision). More exactly: I need all ever existed paths. If someone knows how to do a fulltext search on the entire repository (including all revisions), this would help me even better. Example Let's say...

Which version of Art of Computer Programming should I read and when?

I want to read Art of Computer Programming by Donald Knuth for various personal and professional reasons. So when I walk into the book store I see a couple volumes a couple versions and a whole bunch of Fascicles/sub volumes. eventually these Fascicles should be a concise volume and then further editions and versions will ensue. If I wil...

Is there a svn:keyword for "modification count" of a versioned file in subversion

The $Revision$ in CVS shows the version of a file, which based on modification count. This is very convienient, as the modification count can be used as "Build Number", and for each file, the number itself reflects the "growing life" of a file. But in SVN, the version is about the whole repository, any modification to files are by me...

File Revision Control

Hello guys, How can I add a revision history in a file like shown here. Just to keep it simple and clean. ...

Subversion oddity - svn info revision higher than last changed rev on project folder

Got something going on I can't explain. I have a working copy of my project - done svn update (which says: Updated to revision 1895), I know it's the latest. When I perform an svn info on the project folder, the Revision is 1895, but the Last Changed Rev is 1888. Inspecting the log using TortoiseSVN shows 1888 as the last revision, no ...

How to activate revision info in line number view

I know of an Eclipse feature to show revision information (gradual coloring, more info like revisionnumber, date and author on mouseover) for the last changes in a line in the linenumbers-view. Does anyone know how to activate this feature for a file, or even better, by default? I accidently hit some shortcut lately which made it show i...

TortoiseSVN Update Head from Revision

I am new to tortoiseSVN - What is the best way to update the head from a revision? ...

with svn, check the revision number when offline

I'm offline (well, to be exact my svn repository in unreachable right now), but I have a fully fledged working copy on which I am, well, working :-) Now I need to know the revision number of a file. How can I check the revision number of a particular file (which by the way doesn't have the svn:keywords property) while being offline? I ...

How can I list the revision numbers of a document in CouchDB?

I know that I can retrieve a specific revision of a document via http://localhost:5984/mydb/626b345059c2a54fbe8b8009ba87a409?rev=2-3696048776 but this assumes I know the revision number 2-3696048776. How can I list all available revisions for document 626b345059c2a54fbe8b8009ba87a409? ...

teamcity run several build projects with on revision

Hi, I would like to run several Team-City build projects with the same SVN-revision. Is this possible? ...

deltified document revision control in PHP

If I have a PHP application which allows users to make changes to documents, what is the best way to implement revision tracking for each document? I want the storage of each revision to be deltified (i.e. only save the changes that were made) like svn and other SCMs do with code. I know on a very simple level how it works, but when I st...

How do you setup Post Revisions/History Tracking with ORM?

I am trying to figure out how to setup a revisions system for posts and other content. I figured that would mean it would need to work with a basic belongs_to/has_one/has_many/has_many_though ORM (any good ORM should support this). I was thinking a that I could have some tables like (with matching models) [[POST]] (has_many (text) thro...

Where should functional specs be stored and how should their revision history be tracked?

Background I come from a hardware development engineering background. Our detailed specifications contained a revision history as a table at the end or beginning of the—typically MS Word—document. These specs were saved in a document management system separate from the management system used to store the hardware design deliverables, su...