10 lines
178 B
Bash
10 lines
178 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if ! exist git; then
|
||
|
return 1
|
||
|
fi
|
||
|
|
||
|
# while zsh can detect versions, bash
|
||
|
# in shells other than zsh, simply fall back to save
|
||
|
alias gsta='git stash save'
|