Email or username:

Password:

Forgot your password?
Top-level
Ryuno-Ki

@aral
Would that include merge commits?

I _think_ there's a way to exclude them, too.

Anyway, nice command! Define it as alias :)

2 comments
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

Ryuno-Ki

@aral
Way easier this way :)

Go Up