mirror of
https://github.com/namibia/tips.git
synced 2025-01-23 23:28:30 +00:00
Merge pull request #64 from exalted/patch-3
Use log instead of whatchanged
This commit is contained in:
commit
e2eb80ed24
@ -274,6 +274,12 @@ curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completio
|
||||
|
||||
## What changed since two weeks?
|
||||
```sh
|
||||
git log --no-merges --raw --since='2 weeks ago'
|
||||
```
|
||||
|
||||
|
||||
__Alternatives:__
|
||||
```sh
|
||||
git whatchanged --since='2 weeks ago'
|
||||
```
|
||||
|
||||
|
@ -89,7 +89,8 @@
|
||||
"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'"
|
||||
"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",
|
||||
"tip": "git log --no-merges --stat --reverse master.."
|
||||
|
Loading…
x
Reference in New Issue
Block a user