top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Git name-rev --tags ouput

+1 vote
215 views

What's the meaning of the following in git name-rev output. I know the commit went into 100.15 version, but what to makeof ^2~4^2~1, any pointer to documentation ?

tags/100.15^2~4^2~1
posted Aug 2, 2013 by Luv Kumar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
answer Aug 2, 2013 by Deepankar Dubey
Similar Questions
–1 vote

Running "git rev-parse --show-toplevel" doesn't print anything when it is run inside .git dir (on all levels)

+1 vote

When I run git clean -xfd, git deletes my tags file. I have the tag file listed in gitignore, but how do I tell git not to remove the tags file.

+2 votes

In our current setup, we have automatic tagging in git of all successful release builds. This makes it easy to go back to stable points in history and compare functionality, check when bugs were introduced etc.

To help with this process further, it would be useful to be able to use git bisect, but as these are just a sequence of tags, not commits on a branch, git bisect will not work as is.

Is there any tooling for automatically recreating a branch from a sequence of tags, where each generated commit is the calculated delta between each two neighboring tags?

...