Skip to content

Instantly share code, notes, and snippets.

@rasgo-cc
Created May 1, 2019 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rasgo-cc/ce05c67cadc76c5a6dec50d195a10925 to your computer and use it in GitHub Desktop.
Save rasgo-cc/ce05c67cadc76c5a6dec50d195a10925 to your computer and use it in GitHub Desktop.
List last Git commits (windows)
@echo off
for /f "delims=" %%a in ('git describe --tags --abbrev^=0') do @set latesttag=%%a
git log %latesttag%..HEAD --graph --oneline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment