Live data from Hacker News

Git Blame-Someone-Else

github.com

11–13 of 13 posts

Re: Git Blame-Someone-Else

#11
post #10

It's actually a pretty convenient script to use locally when doing repository manipulation, for example when you're cherry-picking other people's commit via patch and want to attribute it to them.

But changing commit author is quite easy with git, just do: ‘git commit -a —author “ ”’

I often need to change the author on commits that aren't the topmost one.

Re: Git Blame-Someone-Else

#12
post #10

Earlier quoted context omitted.

But changing commit author is quite easy with git, just do: ‘git commit -a —author “ ”’

I often need to change the author on commits that aren't the topmost one.

Then do it via rebase -i and e. I do that constantly,
Post reply on HN