Moving from CVS to git: $Id:$ equivalent? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T09:36:01Zhttp://stackoverflow.com/feeds/question/384108http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent4Moving from CVS to git: $Id:$ equivalent?Joe Casadonte2008-12-21T04:45:46Z2009-04-26T18:17:31Z
<p>I read through a bunch of questions asking about simple source code control tools and git seemed like a reasonable choice. I have it up and running and it works well so far. One aspect that I like about CVS is the automatic incrementation of a version number. </p>
<p>I understand that this makes less sense in a distributed repository, but as a developer I want/need something like this. Let me explain why:</p>
<p>I use Emacs. Periodically I go through and look for new versions of the lisp source files for 3rd-party packages. Say I've got a file foo.el which according to the header is version 1.3; if I look up the latest version and see it's 1.143 or 2.6 or whatever, I know I'm pretty far behind. If instead I see a couple of 40-character hashes, I won't know which is later or get any idea of how much later it is. I would absolutely hate it if I had to manually check ChangeLogs just to get an idea of how out of date I am.</p>
<p>As a developer, I want to extend this courtesy, as I see it, to the people that use my output (and maybe I'm kidding myself that anyone is, but let's leave that aside for a moment). I don't want to have to remember to increment the damn number myself every time, or a timestamp or something like that. That's a real PITA, and I know that from experience.</p>
<p>So what alternatives do I have? If I can't get an $Id:$ equivalent, how else can I provide what I'm looking for? Thanks for the help!</p>
<p>EDIT: I should mention that my expectation is that the end user will NOT have git installed and even if they do, will not have a local repository (indeed, I expect not to make it available that way). Thanks for the answers so far!</p>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/384112#3841126Answer by orip for Moving from CVS to git: $Id:$ equivalent?orip2008-12-21T04:54:49Z2008-12-21T04:54:49Z<p>Not sure this will ever be in Git. To <a href="http://www.gelato.unsw.edu.au/archives/git/0610/28891.html" rel="nofollow">quote Linus</a>:</p>
<blockquote>
<p>"The whole notion of keyword substitution is just totally idiotic. It's
trivial to do "outside" of the actual content tracking, if you want to
have it when doing release trees as tar-balls etc."</p>
</blockquote>
<p>It's pretty easy to check the log, though - if you're tracking foo.el's stable branch, you can see what new commits are in the stable branch's log that aren't in your local copy. If you want to simulate CVS's internal version number, you can compare the timestamp of the last commit.</p>
<p>Edit: you should write or use someone else's scripts for this, of course, not do this manually.</p>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/384177#3841773Answer by Otto for Moving from CVS to git: $Id:$ equivalent?Otto2008-12-21T06:14:06Z2008-12-23T01:50:40Z<p>If I understand correctly, essentially, you want to know how many commits have happened on a given file since you last updated.</p>
<p>First get the changes in the remote origin, but don't merge them into your <code>master</code> branch:</p>
<pre><code>% git fetch
</code></pre>
<p>Then get a log of the changes that have happened on a given file between your <code>master</code> branch and the remote <code>origin/master</code>.</p>
<pre><code>% git log master..origin/master foo.el
</code></pre>
<p>This gives you the log messages of all the commits that have happened in the remote repository since you last merged <code>origin/master</code> into your <code>master</code>.</p>
<p>If you just want a count of the changes, pipe it to <code>wc</code>. Say, like this:</p>
<pre><code>% git rev-list master..origin/master foo.el | wc -l
</code></pre>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/384194#3841942Answer by skiphoppy for Moving from CVS to git: $Id:$ equivalent?skiphoppy2008-12-21T06:33:20Z2008-12-21T06:33:20Z<p>If you're just wanting people to be able to get an idea how far out of date they are, git can inform them of that in several fairly easy ways. They compare the dates of the last commit on their trunk and your trunk, for example. They can use git cherry to see how many commits have occurred in your trunk that are not present in theirs.</p>
<p>If that's all you want this for, I'd look for a way to provide it without a version number.</p>
<p>Also, I wouldn't bother extending the courtesy to anyone unless you're sure they want it. :)</p>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/384315#3843153Answer by Abizern for Moving from CVS to git: $Id:$ equivalent?Abizern2008-12-21T10:18:25Z2009-01-09T06:32:28Z<p>Something that is done with git repositories is to use the <code>tag</code> object. This can be used to tag a commit with any kind of string and can be used to mark versions. You can see that tags in a repo with the <code>git tag</code> command, which returns all the tags.</p>
<p>It's easy to check out a tag. For example, if there is a tag <code>v1.1</code> you can check that tag out to a branch like this:</p>
<pre><code>git checkout -b v1.1
</code></pre>
<p>As it's a top level object, you'll see the whole history to that commit, as well as be able to run diffs, make changes, and merges.</p>
<p>Not only that, but a tag persists, even if the branch that it was on has been deleted without being merged back into the main line.</p>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/384322#3843223Answer by Keltia for Moving from CVS to git: $Id:$ equivalent?Keltia2008-12-21T10:35:42Z2008-12-21T10:35:42Z<p>If having $Keywords$ is essential for you, then maybe you could try to look at <a href="http://selenic.com/wiki/Mercurial" rel="nofollow">Mercurial</a> instead? It has a hgkeyword extension that implement what you want. Mercurial is interesting as a DVCS anyway.</p>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/384640#3846403Answer by Bombe for Moving from CVS to git: $Id:$ equivalent?Bombe2008-12-21T16:37:14Z2008-12-21T16:37:14Z<p>As I’ve written <a href="http://stackoverflow.com/questions/343721/bazaar-and-id#343797">before</a>:</p>
<blockquote>
<p>Having automatically generated Id tags that show a sensible version number is impossible to do with DSCM tools like Bazaar because everybody’s line of development can be different from all others. So somebody could refer to version “1.41” of a file but your version “1.41” of that file is different.</p>
<p>Basically, $Id$ does not make any sense with Bazaar, Git, and other distributed source code management tools.</p>
</blockquote>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/384677#3846771Answer by Otto for Moving from CVS to git: $Id:$ equivalent?Otto2008-12-21T17:04:32Z2008-12-21T17:04:32Z<p>You've put so many constraints on the problem that you're left with custom scripting as your only solution.</p>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/385520#38552010Answer by Dustin for Moving from CVS to git: $Id:$ equivalent?Dustin2008-12-22T04:03:29Z2008-12-22T04:03:29Z<p>The SHA is just one representation of a version (albeit canonical). The <code>git describe</code> command offers others, and does so quite well.</p>
<p>For example, when I run <code>git describe</code> in my master branch of my <a href="http://github.com/dustin/java-memcached-client" rel="nofollow">java memcached client</a> source, I get this:</p>
<pre><code>2.2-16-gc0cd61a
</code></pre>
<p>That says two important things:</p>
<ol>
<li>There have been exactly 16 commits in this tree since 2.2</li>
<li>The <em>exact</em> source tree can be displayed on anyone else's clone.</li>
</ol>
<p>Let's say, for example, you packaged a <code>version</code> file with the source (or even rewrote all the content for distribution) to show that number. Let's say that packaged version was <code>2.2-12-g6c4ae7a</code> (not a release, but a valid version).</p>
<p>You can now see exactly how far behind you are (4 commits), <em>and</em> you can see exactly which 4 commits:</p>
<pre><code># The RHS of the .. can be origin/master or empty, or whatever you want.
% git log --pretty=format:"%h %an %s" 2.2-12-g6c4ae7a..2.2-16-gc0cd61a
c0cd61a Dustin Sallings More tries to get a timeout.
8c489ff Dustin Sallings Made the timeout test run on every protocol on every bui
fb326d5 Dustin Sallings Added a test for bug 35.
fba04e9 Valeri Felberg Support passing an expiration date into CAS operations.
</code></pre>
http://stackoverflow.com/questions/384108/moving-from-cvs-to-git-id-equivalent/791314#7913140Answer by Amr Mostafa for Moving from CVS to git: $Id:$ equivalent?Amr Mostafa2009-04-26T18:17:31Z2009-04-26T18:17:31Z<p>Since you use emacs, you might be lucky :)</p>
<p>I've came across this question by coincidence, and also by coincidence I've came by <a href="http://groups.google.com/group/gnu.emacs.sources/browse%5Fthread/thread/951b748de9985a8d" rel="nofollow">Lively</a> few days ago, an emacs package which allows having lively pieces of emacs lisp in your document. I've not tried it to be honest, but it came to my mind when reading this.</p>