mirror of
https://github.com/Fakerr/git-recall.git
synced 2026-09-10 07:26:42 -04:00
Update documentation
added documentation for the new option.
This commit is contained in:
parent
c4d1cd810d
commit
6b71d1249e
|
|
@ -16,6 +16,7 @@ check what you or other contributors in your team did. It doesn't aim to be a re
|
|||
```sh
|
||||
$ git recall [-a <author name>]
|
||||
[-d <days-ago>]
|
||||
[-l]
|
||||
[-f]
|
||||
[-h]
|
||||
```
|
||||
|
|
@ -24,6 +25,7 @@ $ git recall [-a <author name>]
|
|||
|
||||
- `-a` - Restrict search for a specific user (use -a "all" for all users)
|
||||
- `-d` - Display commits for the last n days
|
||||
- `-l` - show commits that have not been pushed to the remote branch.
|
||||
- `-f` - Fetch the latest changes
|
||||
- `-h` - Show help screen
|
||||
|
||||
|
|
@ -53,6 +55,9 @@ $ git recall -d 5 -a "Doge"
|
|||
|
||||
$ git recall -d 5 -a "all"
|
||||
# The command will show commits of all contributors from 5 days ago.
|
||||
|
||||
$ git recall -l
|
||||
# The command will show commits that are present on the local branch, but have not yet been pushed to the remote.
|
||||
```
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue