alex / alex/pyvcs

git author is the committer

オープン
#14 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Python
スター
128
フォーク
11
PR マージ指標
30日以内にマージされた PR はありません

説明

In git.py you're doing:

```
return Commit(commit.id, commit.committer,
datetime.fromtimestamp(commit.commit_time), commit.message, files,
lambda: generate_unified_diff(self, files, parent, commit.id))
```

But this sets the author of the commit to the committer, which isn't always the case. It should be:

```
return Commit(commit.id, commit.author,
datetime.fromtimestamp(commit.commit_time), commit.message, files,
lambda: generate_unified_diff(self, files, parent, commit.id))
```

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。