From 6b71d1249e985b63dadd03898f8a9cadf39296af Mon Sep 17 00:00:00 2001 From: Henryk Iwaniuk Date: Tue, 31 Jan 2017 16:23:55 +0100 Subject: [PATCH] Update documentation added documentation for the new option. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 74095d1..29775fd 100644 --- a/README.md +++ b/README.md @@ -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 ] [-d ] + [-l] [-f] [-h] ``` @@ -24,6 +25,7 @@ $ git recall [-a ] - `-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. ```