Created
May 1, 2019 12:41
-
-
Save rasgo-cc/ce05c67cadc76c5a6dec50d195a10925 to your computer and use it in GitHub Desktop.
List last Git commits (windows)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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