Questions tagged [revisions]

74 questions
33
votes
2 answers

SVN find revision of tag

Is there any way of showing which revision is equivalent to a certain tag?
Mihai
  • 363
  • 1
  • 3
  • 4
26
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
  • 553
  • 1
  • 8
  • 13
14
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
  • 28,573
  • 26
  • 128
  • 197
12
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…
11
votes
3 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
  • 35,107
  • 16
  • 95
  • 241
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,188
  • 1
  • 10
  • 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,546
  • 12
  • 56
  • 84
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,283
  • 1
  • 22
  • 42
5
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
  • 93,904
  • 24
  • 179
  • 256
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
  • 21,983
  • 21
  • 65
  • 76
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
  • 4,785
  • 9
  • 41
  • 80
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
  • 45,443
  • 73
  • 211
  • 346
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,198
  • 1
  • 14
  • 27
4
votes
1 answer

Get details of cells changed from a Google Spreadsheet change notification in a machine readable format

If I have a Google Spreadsheet e.g. https://docs.google.com/spreadsheet/ccc?key=0AjAdgux-AqYvdE01Ni1pSTJuZm5YVkJIbl9hZ21PN2c&usp=sharing And I have set up notifications on it to email me immediately whenever a cell changes. And I make a change to…
1
2 3 4 5