Questions tagged [revisions]

73 questions
35
votes
2 answers

SVN find revision of tag

Is there any way of showing which revision is equivalent to a certain tag?
Mihai
  • 383
  • 1
  • 3
  • 4
29
votes
1 answer

How to list SVN tags and its revisions from command line

I need revisions of different tags. So far I used a Tag-Browser in SmartSVN. However it is quite slow. Something like svn ls "^/tags" shows only the tags but no revisions. And something like svn log /path/to/tag -v --stop-on-copy gives too much…
swo
  • 583
  • 1
  • 8
  • 13
15
votes
1 answer

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…
machineghost
  • 33,529
  • 30
  • 159
  • 234
13
votes
1 answer

How to get a detailed list of google doc revisions in Drive API

I am trying to find a way to retrieve a detailed list of Google doc revisions using Google Drive API. I have tried to implement it in Java, and it does return a list of 10 revisions. However, this list is not detailed enough. If I go to Google…
12
votes
4 answers

Is C++21 the Next Standard?

I heard a lot of buzz about C++17 and C++14 even when C++11 was rolling out. But now I understand that C++17 is on track to deliver (without Concepts) in the Fall of 2017, but I'm still not sure what the following standard is. I've heard C++21…
Jonathan Mee
  • 37,899
  • 23
  • 129
  • 288
9
votes
4 answers

Handling Revisions within Oracle

I have a table say: CREATE TABLE "DataNode" ( "ID" NUMBER(7,0), "TYPE" NUMBER(7,0), "NAME" VARCHAR2(100), "STATUS" NUMBER(7,0), "REVISION" NUMBER(4,0), "MODIFIEDAT" DATE ); CREATE TABLE "DataNode_Revisions" ( "ID"…
jreid42
  • 1,240
  • 1
  • 12
  • 19
7
votes
8 answers

Build Version vs Revision number

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…
stoic
  • 4,700
  • 13
  • 58
  • 88
6
votes
1 answer

Show Log not showing all revisions

I have an issue with Subversion not showing all revisions I'd expect to see when I look further down in the directory tree. Let this be my directory structure: trunc |____ src |____Folder1 |______File1 For File1 we have…
Gert Arnold
  • 105,341
  • 31
  • 202
  • 291
5
votes
1 answer

CouchDB replication stopped after a _conflict

I have a user that today is not replicating the new documents that the others users are adding on my CoucDB database, in other words the user A does not see the docuemnts that the users B, C is adding every day. I have seen the last document added…
JoCuTo
  • 2,463
  • 4
  • 28
  • 44
5
votes
1 answer

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

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…
Boaz
  • 25,331
  • 21
  • 69
  • 77
5
votes
4 answers

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…
veilig
  • 5,085
  • 10
  • 48
  • 86
5
votes
2 answers

Mercurial: Checkout Files for Revision

Is it possible to checkout all the files in a repository for a specific revision? Say for example that my repository is at revision 88. I don't want to revert or backout any of the changes up to revision 88, but just get a copy of them at revision…
sdoca
  • 7,832
  • 23
  • 70
  • 127
5
votes
4 answers

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?
pencilCake
  • 51,323
  • 85
  • 226
  • 363
5
votes
3 answers

Post revisions don't save or show up for all custom post types

My website makes use of a number of custom post types as well as the traditional "posts" and "pages" types. For all "posts" and "pages" revisions show up as they should, with a history of edits visible, the option to compare posts, and so on. For…
user1695870
  • 51
  • 1
  • 3
4
votes
1 answer

How to iterate and count Revisions in a Word document using C#?

I have been looking around for this but couldn't find an answer anywhere, so hope aomeone here can help. I am doing a WinForms application in C# in wich i use WordApplcation.CompareDocuments to compare two documents and get a result document with…
537mfb
  • 1,374
  • 1
  • 16
  • 32
1
2 3 4 5