mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
Merge pull request #629 from dankilman/fix-git-effort
Fix git-effort for paths starting with dash
This commit is contained in:
commit
28363eff4e
|
|
@ -17,7 +17,7 @@ usage() {
|
|||
# get dates for the given <commit>
|
||||
#
|
||||
dates() {
|
||||
eval "git log $args_to_git_log --pretty='format: %ad' --date=short \"$1\""
|
||||
eval "git log $args_to_git_log --pretty='format: %ad' --date=short -- \"$1\""
|
||||
}
|
||||
|
||||
# tput, being quiet about unknown capabilities
|
||||
|
|
@ -31,7 +31,7 @@ tputq() {
|
|||
#
|
||||
|
||||
hide_cursor() {
|
||||
tputq civis
|
||||
tputq civis
|
||||
}
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue