summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-09-27 16:02:20 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-09-29 17:42:07 +1000
commite8738161603b5d9844f690214cee7e570a93d5a1 (patch)
treec0ea40ea6a3d9a602bb46ec09e1de41aeea75f09 /main.go
parent23626755d7d4ae3573d25ad73db7bf5be0c495f2 (diff)
do not include bare repos in recent repos list
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 534285afa..96665782c 100644
--- a/main.go
+++ b/main.go
@@ -24,7 +24,7 @@ func main() {
flaggy.DefaultParser.ShowVersionWithVersionFlag = false
repoPath := ""
- flaggy.String(&repoPath, "p", "path", "Path of git repo. (Deprecated: use --git-dir for git directory and --work-tree for work tree directory)")
+ flaggy.String(&repoPath, "p", "path", "Path of git repo. (equivalent to --work-tree=<path> --git-dir=<path>/.git/)")
filterPath := ""
flaggy.String(&filterPath, "f", "filter", "Path to filter on in `git log -- <path>`. When in filter mode, the commits, reflog, and stash are filtered based on the given path, and some operations are restricted")