revisions

see revision differences with TortoiseSVN

How do I see the differences between revisions 1 and 100 of an open source project with TortoiseSVN? ...

How do I find the revision that changed a line in my code using TortoiseSvn?

I have one line of code which seems commented. Basically the thing I want to find is the revision that changed this line in the code. So, is it possible to see changes in code related to a specific keyword in TortoiseSvn Log? ...

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? ...

SVN find revision of tag

Is there any way of showing which revision is equivalent to a certain tag? ...

track revisions in postgresql

I have to keep track of revisions of records in a table. What I've done is create a second table that inherits from the first and adds a revision counter. CREATE TABLE A ( id SERIAL, foo TEXT, PRIMARY KEY (id)); CREATE TABLE B ( revision INTEGER NOT NULL) INHERITS (A); Then I created a trigger that would update table B everytime A i...

Drupal - editing tab options for a content type not showing up

I'm working on a D5 site and a lot of the content types have the menus at the top of the edit page. Examples: Overview | Grants | Dev load | Dev render | Edit | Revisions | Track | Workflow Overview | Dev load | Dev render | Edit | Revisions | Track | Workflow | Node queue | RelatedContent I'm not sure where these tabs come from, b...

SharePoint 2007 lists webservice - identify revision of list item

Using the lists webservice I retrieve the items from a list. In the XML returned I can see the attribute ows__IsCurrentVersion="1" which I assume is the same as the file object model (i.e. a boolean to say if it is current or not). However I do not see a way to identify what revision it is? What should that attribute be? ...

Is there any way to svn diff or svn merge across multiple non-sequential revisions at once?

So in SVN you can do things like: svn merge -r555:558 svn diff -c551 but (as far as I know) there is no way to do: svn merge -r555:558, 592:594 svn diff -c551, 557, 563 For merges you can always just do several commands in sequence: svn merge -r555:558 svn merge -r592:594 but for diffs doing that will just result in multiple dif...

How to archive/export all files changed since a specific revision with Mercurial?

Hi, Mercurial supports a handy archive command which allows you to export all files as they were in a specific revision (thanks to Ry4an for pointing this out in a comment) to another folder/zip file etc. This is done as follows: hg archive -r REV destination Is there a way to export only the files changed since a certain revision an...

c# SharpSVN, how does one get a copy of specific revision files?

Hello, I was looking for something in SharpSVN that will do the equivalent of "Save revision to..." in the TurtoiseSVN GUI. I have been trying to find out how to do this with no luck. Currently I am looking at: Note: logentry is a SvnLogEventArgs after I called client.GetLog(uri, arguments, out logitems); foreach (SvnChangeItem svnChang...

couchdb - new views checkpointing against huge update_seq

I am running couchdb 0.11 on mac os x in a development environment. I have about 50,000 documents which I have migrated from a mysql db. In the course of migration, I have deleted and reimported this data about 15 times and now the update_seq on the database is around 900,000. Now, when I add new views (or modify current ones), the build...

How do you obtain a SvnLogEventArgs childs revision number in SharpSVN?

Hello, I have been working with SharpSVN quite a bit lately and I'm currently trying to obtain all of a revisions children's revision numbers. I see that using SvnLogEventArgs.HasChildren I can verify that they exist but it need the actual numbers of the children below it. I've been looking at the SvnClient object and see a GetMergesMerg...

Build Version vs Revision number

Hey There I have an asp.net/C# app that uses subversion for source control. My app automatically increases it's AssembleVersion and AssemblyFileVersion on each build which works like a charm, and displays the build number in the administration side of the site. We keep track of AssembleVersion and AssemblyFileVersion's when we do depl...

TortoiseSVN/Subversion Revision numbers...Altenate program?

I asked this question (below) a week ago and got the answer I was looking for, BUT, What program would work if I want the configuration management program to up a file to the next revision (by one unit) ONLY if it is edited. I understand the subversion does not do it that way, BUT what program will? I am fairly new to Subversion/Tort...

TFS API VS2010 - How do I set the comment on a workitem revision?

I've been beating my head against the wall and can't figure this out. I would post an image to help show you what I mean, but I'm a newbie ;) ...

SQL query for nth most recent update

I have a revision table and I need to be able the nth most recent update. I have a query that gives me the most recent revision record of enitity, but I need one for the nth most recent revision record. revisions --+---------+--------+----------+------- id|entity_id|contents|revisor_fk|revised The query must take input 0 to n. If th...

how cut the mercurial repository from certain revision / push

I have broken some code in my last 4-5 revisions / pushes to main repository. At now I want to completely delete this pushes and start HEAD of my repository from that point. How can I do that? In SVN there is dump command, which copies whole repository from one revision to another. There is some substitute in Mercurial or oher way? ...

Looking for a document collaboration tool

Does anyone know of a good way to use Word, Outlook or anything else to be able to review documents collaboratively in parallel? It would be nice if there were a way to even merge multiple documents each with their own revisions into a single document with all revisions and comment authors. Maybe version control software would help, bu...

Subversion: how to create a tag with folders at multiple revisions

Hi, We have a large project which consists of a single build job (Maven, via a pom.xml, with multiple child folders etc). Developers have given us three different revision numbers, and would like us to create a single tag that we can feed the (Hudson) build job. Example: / -- at rev X /project1 -- at rev Y /project2 -- at rev Z I was...