|
I use my name with accented characters when committing some code and got an exception that Guille fixed as follows:
"protocol: #'private-commits'"
commitFromGitCommit: aLGitCommit
^ self commitCache at: aLGitCommit id hexString ifAbsentPut: [ IceGitCommit new id: aLGitCommit id hexString; author: aLGitCommit author name asByteArray utf8Decoded; datetime: aLGitCommit time asDateAndTime; ancestorIds: (aLGitCommit parents collect: [ :parent | parent id hexString ]); comment: aLGitCommit message; repository: self; yourself ]
->
"protocol: #'private-commits'"
commitFromGitCommit: aLGitCommit
^ self commitCache at: aLGitCommit id hexString ifAbsentPut: [ IceGitCommit new id: aLGitCommit id hexString; author: aLGitCommit author name; datetime: aLGitCommit time asDateAndTime; ancestorIds: (aLGitCommit parents collect: [ :parent | parent id hexString ]); comment: aLGitCommit message; repository: self; yourself ]
|
|
|
Priority: 5 – Fix If Time
|
|
Status: Work Needed
|
|
Assigned to: Everyone
|
|
Milestone: Pharo7.0
|
Go to Case
|
|