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 ...
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, ...
37
votes
4answers
18k views

How do I view an older version of an SVN file?

I have a SVN file which is now missing some logic and so I need to go back about 40 revisions to the time when it had the logic I need. Other than trying to view a diff of the file in the command line ...
31
votes
3answers
13k views

How to view revision history for Mercurial file?

For a given file in a Mercurial repository, how can you see the revision history? And how can you diff two revisions of the file? Ideally doing all this with visual tools (we use ExamDiff to do ...
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 ...
26
votes
7answers
32k views

How to clone git repository with specific revision/changeset?

How can I clone git repository with specific revision/changeset? Something like I usually do in Mercurial: hg clone -r 3 /path/to/repository Thanks!
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 ...
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?
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 ...
16
votes
2answers
2k views

find svn revision by removed text

Is there a way to find an SVN revision by searching for a text string that got removed in the file? I know the exact text to search for and which file to look in, but there are hundreds of revisions. ...
15
votes
10answers
2k views

Are there revision control systems for images?

I would make crazy use of such a revision control. If it doesn't exist - where would to a good starting point for building one? I can probably make a lot of designs and interaction flows, but to ...
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?
12
votes
3answers
3k views

SVN: find revision in trunk that a branch was created from

I am trying to merge the latest changes from trunk into a branch of my project, but the problem is I don't know what revision of the trunk I checked out that I eventually created the branch from. I ...
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 ...
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 ...
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 ...
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 ...
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 ...
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. ...
9
votes
8answers
518 views

How do I simultaneously work on version 1.1 and version 2.0?

The situation: We're out of beta and version 1.0 has been released to several customer sites. Team A is already busy working on version 1.1 that will have incremental bugfixes and usability tweaks, ...
8
votes
3answers
519 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 | +----+-------+------+--------+--------+ ...
8
votes
6answers
4k views

obtain current svn revision in webapp

what is the best way of displaying/using the revision number in a java webapp? we just use ant to build our .war archive, no buildserver or such. i'd hope there was some kind if $ref that i could ...
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 ...
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 ...
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 ...
8
votes
2answers
487 views

What is the best way to create a simple revision system using MySQL?

I am currently working on a simple revision system that enables me to store multiple versions of a single file, which works fine so far. Table structure is as follows (obsolete columns removed for ...
7
votes
8answers
993 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 ...
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 ...
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 ...
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 ...
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
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
5answers
2k views

How to display SVN revision on web site dynamically?

My web site is a checkouted version of SVN repo. I mean .svn folders are placed on web server. I don't use web publishing. And I want to display current project revision (whole web site) in footer. ...
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 ...
6
votes
3answers
816 views

Subversion - put version number in a file

I just want a single file, called "revision", which contains the repository revision number at any given time so that when I export my repository, my application is able to see which revision it was. ...
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 ...
6
votes
1answer
727 views

Updating CCNET Last Build Label from an assembly version

I Have managed to create a CI project that uses GIT as it's source control, and an MSBuild extension to label the assemblies based on the CCNet build label, and commit that changed label I have other ...
5
votes
2answers
680 views

Who deleted my change in git?

Here was my problem for the last 30 minutes: I had a couple of changes that disappeared in one of my files, and I don't know when that happened. And I want to know who did that! I started looking for ...
5
votes
3answers
446 views

Refer to a mercurial revision relative to a named revision

In git, you can do refer to revisions by something like master^^, meaning two revisions before master. Can you do the same in Mercurial in some way (or with some extension)? For example, if I want to ...
5
votes
1answer
5k views

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 ...
5
votes
4answers
945 views

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

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

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

Where would I go with an idea for the next C standard?

I've been reading up a lot on how C works, and I think I have an idea for how to make it better. From what I've read it seems like the standard changes from time to time, and I was wondering if there ...
5
votes
2answers
311 views

Mercurial and mysql

I'm using Mercurial for revision control of few projects. I have Mercurial installed both on my VPS and on my local machine. I push changes from my local machine to the remote server. Everything is ...
5
votes
1answer
1k views

how to hide revision number from eclipse explorer view?

Is there any way to hide this number as this number has gone too long ?
5
votes
2answers
4k views

Floyd-Warshall Algorithm Logic - Stuck

I am trying to use this logic to understand what is going on with the adjacency matrix, but i am massivley confused where it says about interspacing for a b c d ..... Could anyone explain what is ...
5
votes
1answer
351 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
565 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 ...
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 ...
5
votes
4answers
376 views

Find Git Revision of a Working Directory Missing the .git Directory

I've got a) a working directory without the .git directory and b) a repository. a is some revision in the middle of the history of b. How can I find out, which revision a matches in b? I thought of ...

1 2 3 4 5 6