Revision: A release of a piece of software which is not a major release or a bugfix, but only introduces small changes or new features.

learn more… | top users | synonyms

82
votes
14answers
33k views

How to get the git commit count?

I'd like to get the number of commits of my git repository, a bit like SVN revision numbers. The goal is to use it as a unique, incrementing build number. I currently do like that, on ...
23
votes
12answers
22k views

How can I get the svn revision number in PHP?

I want to have my PHP Application labeled with the revision number which it uses, but don't want to use CruiseControl or update a file and upload it everytime. How should I do it?
37
votes
18answers
2k views

Do you use distributed version control?

I'd like to hear from people who are using distributed version control (aka distributed revision control, decentralized version control) and how they are finding it. What are you using, Mercurial, ...
24
votes
5answers
15k views

Getting the subversion repository number into code

I'd like to implement a way of recording the version of a project within code, so that it can be used when testing and to help track bugs. It seems the best version number to use would just be the ...
11
votes
7answers
10k views

Getting SVN revision number into a program automatically

I have a python project under SVN, and I'm wanting to display the version number when it is run. Is there any way of doing this (such as automatically running a short script on commit which could ...
7
votes
1answer
165 views

GIT: determine revision based on a file

I have a file from a project that uses GIT as repository. For that file I need to find out to which revision this file belongs to. The file is stand-alone outside of an repository therefore the ...
11
votes
3answers
4k views

Three Way Merge Algorithms for Text

So I've been working on a wiki type site. What I'm trying to decide on is what the best algorithm for merging an article that is simultaneously being edited by two users. So far I'm considering ...
13
votes
11answers
6k views

Subversion: Check out only those files affected during a specific commit

In Subversion, is it possible to check out only those files affected during a specific commit, provided you know the specific revision number?
10
votes
3answers
1k views

Injecting mercurial changeset as version information in a C executable

I would like the executables for a project I am working on to have the latest mercurial changeset recorded so that when a user complains about buggy behavior, I can track which version they are using. ...
8
votes
3answers
1k views

How to delete a specific revision of a github gist?

I created a Gist on GitHub and I saw informations I don't want anyone to see. I updated the file since, but everybody can still access the old revision of the file. Except deleting the Gist, is there ...
30
votes
4answers
8k views

Print Current Mercurial Revision Hash?

Is there a better way extract the current revision hash in Mercurial than hg log -l1|grep changeset|cut -d: -f3 ? Part of my webapp deployment script "tags" the uploaded app tarball with its unique ...
8
votes
3answers
521 views

Keeping page changes history. A bit like SO does for revisions

I have a CMS system that stores data across tables like this: Entries Table +----+-------+------+--------+--------+ | id | title | text | index1 | index2 | +----+-------+------+--------+--------+ ...
7
votes
3answers
3k views

How to use tags for versioning in git gui

I'm a complete and utter noob, so be gentle! I'm using git gui, and never touching the command line interface. I'm a noob, and some of the people i'm working with are even noob-ey-er... Current ...
10
votes
4answers
4k views

Perforce not syncing files correctly

I'm using Perforce P4V, the graphical tool, to interface with my Perforce server here at work. I have a project I added to the depot and I accidentally deleted it from my workspace on my local ...
8
votes
4answers
7k views

Missing annotations.jar

I am trying to update my Android SDK Tools to 17 rev. and I updated usign SDK Tools but in Properties/library ; But the fact that in the support folder there is a annotations.jar already. What ...
2
votes
1answer
149 views

How should CouchDB revisions be treated from a design perspective?

Near as I can tell, CouchDB revisions are not to be treated like revisions in the document versioning sense of the word. From glancing at other posts, they seem to be regarded as transient data that ...
0
votes
1answer
97 views

how to get partial update from subversion

I'm in the following scenario in my application's repository: revision 7 (2 changed files, 1 added file) revision 6 (4 changed files) revision 5 (2 added, 2 deleted, 2 changed) revision 4 (3 changed ...
21
votes
5answers
8k views

Mercurial scripting with python

I am trying to get the mercurial revision number/id (it's a hash not a number) programmatically in python. The reason is that I want to add it to the css/js files on our website like so: <link ...
4
votes
3answers
344 views

triplestore with revisions

I need to store RDF triples, while keeping track of modifications. Is there anything out there for this service? Alternatively, how would you keep track of revision while using a context-aware ...
6
votes
4answers
14k views

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 ...
5
votes
1answer
353 views

Can django-moderation and django-reversion work together for a content_type?

We are working on a django website in which we want to give users control of the content, but we want to have administrator users to moderate the content, and a queue of the accepted content in case ...
5
votes
2answers
2k views

how to add revision and build date to source

I have a gcc project and would like to automatically add defines for build date and revision number (from git) to my sources. What's the best way to do this? My goal is simple to be able to do ...
6
votes
4answers
3k views

Git - go to particular revision

I cloned a git repository of certain project. Can I turn the files to the initial state and when I review the files go to revision 2, 3, 4 ... most recent? I'd like to have an overview how to project ...
6
votes
4answers
10k views

Tortoise SVN and Reverting to a previous revision

How is the easiest way to revert my working copy to a previous revision using Windows Tortoise SVN? I did not find any "findable" command to do that quickly.
6
votes
3answers
8k views

How can I store the new SVN revision number in my source code after I commit? (TortoiseSVN)

Is it possible, via TortoiseSVN, to know the SVN rev number you are about to get prior to a commit so that I can put that rev# into the source code comment section? Perhaps there is a special ...
5
votes
2answers
570 views

Best Practice for CouchDB Document Versioning

Following my question here I am exmploring ideas for a generic approach to document versioning in CouchDB. While I imagine there may be no canonical approach, I had the following idea and am looking ...
4
votes
3answers
4k views

“Mark” svn export with revision

I'm looking for a solution for the following situation. We're using Subversion, and besides the development enviroment, where we use checkouts, we have a test environment, which is supposed to ...
12
votes
4answers
3k views

Generating and applying diffs in python

Is there an 'out-of-the-box' way in python to generate a list of differences between two texts, and then applying this diff to one file to obtain the other, later? I want to keep the revision ...
10
votes
3answers
3k views

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 ...
8
votes
4answers
191 views

Where are all the native revisioned databases?

I've read all the SO questions, the Coding Horror articles, and Googled my brains off searching for the best ways to revision control data. They all work and they all have their appropriate ...
7
votes
8answers
999 views

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 ...
6
votes
3answers
7k views

Easy way to embed svn revision number in page in PHP?

Notice in the bottom right hand corner of this page it has the SVN revision id? I'm assuming that's dynamic. I'd love to add that to some of my sites, just as a comment in the source to make sure ...
5
votes
3answers
377 views

How Show Revision History like Revisions

Walking the line here, I know, but... How does StackOverflow show the revision changes in the diff-like format they use. I don't care about SO per-se, it's just a convenient way to describe my ...
4
votes
4answers
3k views

SVN Revert Trunk, remove a revision as if it never existed?

Is it possible in the svn server to remove a revision as if it never existed? So we have the following revisions: 1004 // Commit of some bogus code that broke the build and was just wrong 1003 // ...
2
votes
1answer
183 views

Get svn revision without an appropriate svn binary installed

For some reason, we can't update the SVN in some build machines. Installed svn version is 1.3.x. But Hudson slave used 1.6 to create a checkout. This means we can't run "svn info" on those checkouts: ...
2
votes
4answers
211 views

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 ...
2
votes
3answers
1k views

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

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 ...
1
vote
4answers
241 views

What actually are tags in subversion (SVN)? And what tag tools does SVN offer built-in? (Compared to Clearcase)

What actually are tags in subversion (SVN)? And what features does Subversion really offer built-in to make productive use of them? I ask because I would like to label collections of files at a ...
0
votes
1answer
279 views

Checkout the git commit corresponding to a certain revision from the old SVN repository?

I migrated my repository from SVN to git. I used THIS site. Now I have a bug in revision X. How do I checkout from my git repository, knowing only the revision number from my old SVN repo? Thank you ...
0
votes
1answer
4k views

Using svnversion with svn:keywords

I'm using Visual SVN on my Windows Box. I have Repository Application, which has Framework as an svn:external. All well and good. When I make a checkout of Application, I'd like to have the version ...
5
votes
4answers
735 views

SVN Version Rollback Question

I'm using SVN (TortoiseSVN) and often came into the following situation: I wanted to discard any changes since a specific (old) revision and turn all files back to this specific (old) version. Then I ...
2
votes
1answer
454 views

How do I determine the revision number of an Android build?

I know how to get the API level, android.os.Build.VERSION.SDK_INT, but there are also several revisions of each level release, e.g. for 2.1 there's rev 1 and 2. How do I determine the revision of a ...
0
votes
1answer
99 views

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