Last active
December 11, 2015 06:08
-
-
Save mstssk/4556824 to your computer and use it in GitHub Desktop.
git graphエイリアスに対して、git logと同じ入力補完をさせる設定ファイル。ホームディレクトリに配置する。 ~/.bash_completion
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
#!/bin/bash | |
# git-graph-completion | |
# =================== | |
_git_graph () | |
{ | |
_git_log | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment