-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Affects Version/s: 4.13.1, 5.6.2, 5.9.0
-
Component/s: Repository - File Browsing
-
1
-
Severity 3 - Minor
Summary
When a commit is pushed to a remote repo, if the commit contains a period, the text after the period is truncated.
Steps to Reproduce
- Create a repo in Bitbucket Server
- Clone the repo locally
- Create 2 files (in this example a README and .gitattributes)
- Git add the 2 files
- Git commit the files with the following example git commit message:
git commit -m $'A. Summary line should be displayed\n\nFurther details are not so important' - Check the commit on the command line:
[nhansberry:~/dev/stash_repos/truncate] master ± git show --pretty=fuller commit f13762b047303af8bfe3ea018e4df82787dc73e7 (HEAD -> master) Author: Nathaniel Hansberry <nhansberry@atlassian.com> AuthorDate: Mon Mar 26 11:15:07 2018 -0500 Commit: Nathaniel Hansberry <nhansberry@atlassian.com> CommitDate: Mon Mar 26 11:15:07 2018 -0500 A. Summary line should be displayed Further details are not so important diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..e69de29 - Git push and check the commit message in the UI
Expected Results
- We should see the entire commit message
Actual Results
Notes
Workaround
- No direct workaround found
- mentioned in
-
Page Loading...