-
Bug
-
Resolution: Fixed
-
Low
-
5.5.5
-
None
-
None
-
1
-
Severity 3 - Minor
-
10
-
Summary
Bitbucket Server in-browser editor unexpectedly replaces CRLF at the end of file with LF.
Environment
- Bitbucket Server 4.13 or newer versions
- Verified with v5.5.5 hosted on Ubuntu 14.04.5 LTS and Git version 2.13.0
Steps to Reproduce
- (Local) Create a file containing lines with CRLF
# The special character "\r\n" stands for CRLF. And "\c" suppresses newline $ echo -e "North\r\nSouth\r\nWest\r\n\c" > example.txt # Verify the file ends with "^M$" $ cat -e example.txt North^M$ South^M$ West^M$ # Verify the file ends with "0d 0a" in hexadecimal binary $ hexdump -C example.txt 00000000 4e 6f 72 74 68 0d 0a 53 6f 75 74 68 0d 0a 57 65 |North..South..We| 00000010 73 74 0d 0a |st..| 00000014
- (Local) Git commit and push the file to Bitbucket Server
- (Remote) Open example.txt and add "East" to the second line by in-browser editor
- (Local) Git pull
- (Local) Check the eol type at end of file is changed to LF from CRLF
# Verify the file ends with "$" but not "^M$" $ cat -e example.txt North^M$ East^M$ South^M$ West$ # Now the file ends with "0a" in hexadecimal binary $ hexdump -C example.txt 00000000 4e 6f 72 74 68 0d 0a 45 61 73 74 0d 0a 53 6f 75 |North..East..Sou| 00000010 74 68 0d 0a 57 65 73 74 0a |th..West.| 00000019
Expected Results
The edited file keeps CRLF at the end of file:
$ cat -e example.txt North^M$ East^M$ South^M$ West^M$
Actual Results
CRLF at the end of file is replaced with LF.
$ cat -e example.txt North^M$ East^M$ South^M$ West$
Notes
- Owing to these configurations in git, other lines except the end of file are intact
- In-browser editor inserts newline (LF) when the file doesn't contain eol character
echo 'Foo\c' > example.txt
Workaround
- Edit files in other editor but not in-browser editor if you want to keep CRLF
- relates to
-
BSERV-9618 File Editor is enforcing core.autocrlf=input and causing Git fatal exception
-
- Closed
-
[BSERV-10542] In-browser editor replace the eol at the end of file with LF regardless of existing eol type
Workflow | Original: Stash Workflow - Restricted [ 2500693 ] | New: JAC Bug Workflow v3 [ 3137198 ] |
Symptom Severity | Original: Minor [ 14432 ] | New: Severity 3 - Minor [ 15832 ] |
Remote Link | Original: This issue links to "Page (Confluence)" [ 377864 ] |
Remote Link | New: This issue links to "Page (Confluence)" [ 377864 ] |
Comment | [ A comment with security level 'atlassian-staff' was removed. ] |
Assignee | New: Michael McGlynn [ mmcglynn ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: Open [ 1 ] | New: Closed [ 6 ] |
Fix Version/s | New: 5.8.0 [ 77992 ] |
UIS | Original: 2 | New: 10 |
We have this same problem in reverse on v5.8.0, where allegedly this was fixed.
All our files are LF line endings as a policy, and the built-in editor is replacing the entire file with CRLF when any edit is made through the web interface.