Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
296 B

  1. #!/bin/sh
  2. # Help messages:
  3. LONG_USAGE="Print a git log including tags"
  4. # Tell git-sh-setup we're ok with being in a subdir:
  5. SUBDIRECTORY_OK=1
  6. . "$(git --exec-path)/git-sh-setup"
  7. # Make sure we're in a working tree
  8. require_work_tree_exists
  9. git log --date=short --pretty='format:%h %ad %d %s'