1
0
mirror of https://github.com/namibia/tips.git synced 2024-06-01 01:41:06 +00:00

Merge pull request #64 from exalted/patch-3

Use log instead of whatchanged
This commit is contained in:
hemanth.hm 2016-06-09 12:06:22 +05:30
commit e2eb80ed24
2 changed files with 8 additions and 1 deletions

View File

@ -274,6 +274,12 @@ curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completio
## What changed since two weeks? ## What changed since two weeks?
```sh ```sh
git log --no-merges --raw --since='2 weeks ago'
```
__Alternatives:__
```sh
git whatchanged --since='2 weeks ago' git whatchanged --since='2 weeks ago'
``` ```

View File

@ -89,7 +89,8 @@
"tip": "curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc" "tip": "curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc"
}, { }, {
"title": "What changed since two weeks?", "title": "What changed since two weeks?",
"tip": "git whatchanged --since='2 weeks ago'" "tip": "git log --no-merges --raw --since='2 weeks ago'",
"alternatives": ["git whatchanged --since='2 weeks ago'"]
}, { }, {
"title": "See all commits made since forking from master", "title": "See all commits made since forking from master",
"tip": "git log --no-merges --stat --reverse master.." "tip": "git log --no-merges --stat --reverse master.."