Email or username:

Password:

Forgot your password?
Top-level
Aral Balkan

@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>

#git #changeList #tip #fish #fishShell

1 comment
Ryuno-Ki

@aral
Way easier this way :)

Go Up