| | |
| | | import java.util.Set;
|
| | |
|
| | | import org.eclipse.jgit.lib.Constants;
|
| | | import org.eclipse.jgit.lib.PersonIdent;
|
| | | import org.eclipse.jgit.revwalk.RevCommit;
|
| | | import org.eclipse.jgit.transport.ReceiveCommand;
|
| | |
|
| | |
| | | return list;
|
| | | }
|
| | |
|
| | | public PersonIdent getCommitterIdent() {
|
| | | return new PersonIdent(user.getDisplayName(), user.emailAddress == null ? user.username : user.emailAddress);
|
| | | }
|
| | |
|
| | | public PersonIdent getAuthorIdent() {
|
| | | return getCommitterIdent();
|
| | | }
|
| | |
|
| | | @Override
|
| | | public int compareTo(PushLogEntry o) {
|
| | | // reverse chronological order
|