Thread (23 messages) flat view 23 messages, 10 authors, 2016-06-15

Re: Creating something like increasing revision numbers

From: Nicolas Pitre <nico@fluxnic.net>
Date: 2016-06-15 22:47:34

On Sun, 18 Oct 2009, Johan Herland wrote:
On Sunday 18 October 2009, Norbert Preining wrote:
quoted
On So, 18 Okt 2009, Johan Herland wrote:
quoted
    $ git describe
    v1.0.4-14-g2414721

where the "v1.0.4" part is the last tag that the current state is based
on, the "14" part is the number of commit between that tag and the
current
So if we have only one tag (initial) then it would count the number
of commits?
Yes. You can create the 'initial' tag with

  git rev-list HEAD | tail -n1 | xargs git tag initial

and from then on

  git describe --tags --match initial | cut -d'-' -f2
Even simpler, without any tag:

	git rev-list HEAD | wc -l

That should roughly give the equivalent of the SVN revision number.  
Valid only in one specific repository of course.


Nicolas
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help