-
Type:
Suggestion
-
Resolution: Won't Fix
-
Component/s: Integrations - API, Product - Your Work
I committed changes to a file by setting the committer to a different person, using the following command:
```
GIT_COMMITTER_NAME='Somebody' GIT_COMMITTER_EMAIL='somebody@gmail.com' git commit -a -m "Setup readme with committer and author"
```
When I list the commit locally, it works, both the author and the committer are visibles:
```
commit 0212e11dfb531a91ee88e906f8d5fd94408a3413
Author: Romain Pouclet <romain.pouclet@gmail.com>
AuthorDate: Wed Oct 9 08:29:09 2019 -0700
Commit: Somebody <somebody@gmail.com>
CommitDate: Wed Oct 9 08:29:09 2019 -0700
Setup readme with committer and author
```
That said, after pushing this commit to my Bitbucket repository, the informations about the committer are not available on the web, in the API or when I look at the raw commit.
It would be great to be able to access this information from the API.