This file contains 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
# paste this into your shell alias file | |
# | |
# Usage: | |
# mkfolder one/two/three/four | |
# | |
# This will produce a directory tree that looks like this: | |
# | |
# |-- one | |
# | |-- .gitkeep | |
# | `-- two |
This file contains 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
# paste this into your shell alias file | |
# | |
# Usage: | |
# gitchgs # show all files changed from develop branch | |
# | |
# gitchgs a1b2c3d4 # show all files changed since commit a1b2c3d4 | |
# | |
# gitchgs some-branch # show all files changed between branch some-branch and HEAD | |
# | |
gitchgs () { |