@RyunoKi In fish shell, I just made a function:
```fish
function git-changes-since
git log --graph --decorate --pretty=oneline --abbrev-commit $argv[1]~1..HEAD
end
```
So I can do:
git-changes-since <commit>
Top-level
@RyunoKi In fish shell, I just made a function: ```fish So I can do: git-changes-since <commit> 1 comment
|
@aral
Way easier this way :)