2

I have a program that is distributed as a single file, and doesn't go through an installation procedure.

Is there a way to have git embed an RCS-like $Id$ string? Checkin timestamp, etc, would also be fine, just something to easily id files in the field. Github-specific solutions are acceptable.

Mark Harrison
  • 297,451
  • 125
  • 333
  • 465

1 Answers1

1

Git support keyword expansion for $Id$ which will be replaced with the SHA value of the file when you do a git checkout. If this is not sufficient you can write a custom content filter. For more details see https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion

joran
  • 2,815
  • 16
  • 18