From 85df5705fbe5dc721757634817a8aa25b820851a Mon Sep 17 00:00:00 2001 From: "Hemanth.HM" Date: Wed, 22 Jul 2015 13:26:24 +0530 Subject: [PATCH] whatchanged --- README.md | 6 ++++++ tips.json | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/README.md b/README.md index 2e47a92..6fe057b 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ * [Get only remote branches](https://github.com/git-tips/tips#get-only-remote-branches) * [Stage parts of a changed file, instead of the entire file](https://github.com/git-tips/tips#stage-parts-of-a-changed-file-instead-of-the-entire-file) * [Get git bash completion](https://github.com/git-tips/tips#get-git-bash-completion) +* [What changed since two weeks?](https://github.com/git-tips/tips#what-changed-since-two-weeks) @@ -124,5 +125,10 @@ git add -p curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc ``` +## What changed since two weeks? +```sh +git whatchanged --since='2 weeks ago' +``` + diff --git a/tips.json b/tips.json index d208786..a4c7c06 100644 --- a/tips.json +++ b/tips.json @@ -71,5 +71,9 @@ { "title": "Get git bash completion", "tip": "curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc" + }, + { + "title": "What changed since two weeks?", + "tip": "git whatchanged --since='2 weeks ago'" } ]