Created
March 15, 2017 09:32
-
-
Save shogo82148/f81d006e63e3ad24c67bfb285ccb9f2c to your computer and use it in GitHub Desktop.
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 | |
| FILE=$(git status --short | peco | awk '{print $2}') | |
| if [ $# -eq 0 ]; then | |
| echo "$FILE" | |
| exit 0 | |
| fi | |
| git "$@" "$FILE" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment