0

I want to use the output of git describe in my program so if a problem occurs, I can easily track down in what revision this happened.

The output is similar to: v2.12-20-g22290d9

I know I can checkout it easily, but how can I track the log with git log or a similar tool?

dan-lee
  • 14,365
  • 5
  • 52
  • 77

1 Answers1

1

git log v2.12-20-g22290d9 will show the log starting at that tag.

chwarr
  • 6,777
  • 1
  • 30
  • 57