Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

45
votes
11answers
15k 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 ...
35
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, ...
18
votes
5answers
6k 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 ...
16
votes
12answers
17k 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?
15
votes
3answers
4k 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 ...
14
votes
2answers
2k 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 ...
13
votes
2answers
4k 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 ...
13
votes
9answers
4k 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?
11
votes
8answers
442 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 ...
9
votes
7answers
5k 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 ...
9
votes
8answers
474 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
316 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
336 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
2answers
304 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 ...
8
votes
5answers
3k 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 ...
7
votes
8answers
559 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
2answers
860 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. ...
6
votes
3answers
234 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
118 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 ...
6
votes
4answers
854 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 ...
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
5k 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
4answers
117 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 ...
5
votes
1answer
78 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 ...
5
votes
2answers
436 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 ...
5
votes
4answers
391 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 ...
5
votes
4answers
608 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
3answers
1k 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 ...
5
votes
3answers
2k 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 ...
5
votes
3answers
286 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 ...
5
votes
6answers
2k views

How to display latest revision in a file?

I'm wondering how do you deal with displaying release revision number when pushing live new versions of your app? You can use $Rev$ in a file to get latest revision, but only after you update the ...
4
votes
2answers
115 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 ...
4
votes
2answers
105 views

Git: Old Source Code into New Repository

Quick question: I've run into a little issue, where I just need some insight into what I should do with some code I have. I have one repository, in two locations. The "older" code is located in ...
4
votes
3answers
215 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 ...
4
votes
3answers
4k 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!
4
votes
3answers
934 views

Mercurial: How to make HG LOG to show trivial parent?

According to HG manual: By default this command prints revision number and changeset id, tags, non-trivial parents, user, date and time, and a summary for each commit. When the ...
4
votes
1answer
3k 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 ...
4
votes
3answers
607 views

How to commit subversion revision with every commit in order to refer between two repositories

Consider software spread in two separate repositories, Pub and Priv. Pub repository is public. Priv is closed. An continuous integration server builds both Pub and Priv when either side changes. It ...
4
votes
3answers
5k 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 ...
4
votes
3answers
3k 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 ...
3
votes
3answers
61 views

How to run svn update in a loop to import commits to git?

Current setup I am running a local git repository in parallel to a svn checkout in the same folder. Whenever something new happens on the svn server I run svn update to download the commits. Then I ...
3
votes
2answers
87 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 ...
3
votes
2answers
104 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 ...
3
votes
3answers
311 views

Android: How to make the versionCode update automatically with every build?

I would like a new versionCode in the Android Manifest every time I commit something to SVN. Is this possible without an Ant script? so every time the costumor runs the program and reports a bug, I ...
3
votes
2answers
438 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 ...
3
votes
3answers
174 views

Does moving a file in SVN delete its revision history?

I realize this might be an easy question that I may have overlooked in the documentation, but I didn't find any other questions like this. When I move a file, or in my case a whole ton of files (I ...
3
votes
4answers
173 views

How to use a revision control system in general

I am planning to create projects which will get a bit bigger than my projects before, so I thought it would be good to use a revision control system like svn or git to keep track of all changes, ...
3
votes
4answers
602 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 ...
3
votes
2answers
1k 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 ...
3
votes
2answers
114 views

delta-dictionary/dictionary with revision awareness in python?

I am looking to create a dictionary with 'roll-back' capabilities in python. The dictionary would start with a revision number of 0, and the revision would be bumped up only by explicit method call. I ...

1 2 3 4 5