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
#!/bin/bash | |
# Adds some useful git aliases | |
echo "Adding aliases" | |
# Lists changes (i.e. commit messages) | |
# "- " prefixed before each line after any whitespace for easily making a markdown list | |
# You can optionally provide from and to tags. | |
# `git ls-changes` will list changes from the last tag to HEAD | |
# `git ls-changes tag_a` will list changes from tag_a to HEAD |