We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the first line of a commit is too long, GH cuts it and place a ... instead. This breaks the loading of the code
I do not know if this changes is correct. Changed
print: (((aVersionInfo perform: sel) ifNil: ['']) asString encodeWith: #'latin-1' ) asString; space ].
into
print: (((aVersionInfo perform: sel) ifNil: ['']) asString encodeWith: #utf8 ) asString; space ].
writeVersionInfo: aVersionInfo (self isWritten: aVersionInfo) ifTrue: [^ stream nextPutAll: '(id '; print: aVersionInfo id asString; nextPut: $) ]. stream nextPut: $(. #(name message id date time author) do: [:sel | stream nextPutAll: sel; space; print: (((aVersionInfo perform: sel) ifNil: ['']) asString encodeWith: #utf8 ) asString; space ]. stream nextPutAll: 'ancestors ('. aVersionInfo ancestors do: [:ea | self writeVersionInfo: ea]. stream nextPutAll: ') stepChildren ('. aVersionInfo stepChildren do: [:ea | self writeVersionInfo: ea]. stream nextPutAll: '))'. self wrote: aVersionInfo
The text was updated successfully, but these errors were encountered:
There is an issue tracker entry
[Iceberg] commit message is not encoded as UTF8 #10781
I think this is related.
Sorry, something went wrong.
I just saw that with another repository. With the fix I could load it
This is a backport of the PR pharo-project#11239 to Pharo10.
e7b7e3d
Fixes pharo-project#11226
PRs merged for Pharo10 and Pharo11
Successfully merging a pull request may close this issue.
When the first line of a commit is too long, GH cuts it and place a ... instead.
This breaks the loading of the code
I do not know if this changes is correct.
Changed
into
The text was updated successfully, but these errors were encountered: