├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── enhancement_request.md └── readme.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us fix a problem with Sublime Merge 4 | 5 | --- 6 | 7 | **Version info** 8 | 9 | - OS: [e.g. macOS 10.14, Windows 10, Ubuntu 18.04] 10 | - Build: [e.g. 1062 - type "About" in the command palette] 11 | 12 | **Description** 13 | 14 | A description of what the bug is. 15 | 16 | **Steps to reproduce** 17 | 18 | Steps to reproduce the behavior: 19 | 1. Open repository ... 20 | 2. Run command ... 21 | 3. Click on ... 22 | 23 | **Expected behavior** 24 | 25 | A description of what you expected to happen. 26 | 27 | **Debug Information** 28 | The Sublime Merge debug information can be used to narrow down the cause of an issue. 29 | It can be collected with the following steps: 30 | 1. Open Sublime Merge 31 | 2. Open the repository where the bug occurs 32 | 3. Navigate to `Help > Debug Information` via the application menu 33 | 4. Before sharing, please redact any information that's sensitive such as file paths, git user information, remote URLs etc. 34 | 35 | This section may be omitted/removed. 36 | 37 | **Screenshots** 38 | 39 | If applicable, add screenshots to help explain your problem. This section may be omitted/removed. 40 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Enhancement request 3 | about: Suggest an enhancement to Sublime Merge 4 | 5 | --- 6 | 7 | **Problem description** 8 | 9 | A description of a problem, workflow or integration that your suggestion would solve. If the problem is OS-specific, include that information here. 10 | 11 | **Preferred solution** 12 | 13 | A description of what changes should be made to Sublime Merge to solve the problem. 14 | 15 | **Alternatives** 16 | 17 | A description of any alternative solutions or enhancements considered. 18 | 19 | **Screenshots** 20 | 21 | If applicable, add screenshots to help demonstrate the problem or proposed solution. This section may be omitted/removed. 22 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Sublime Merge 2 | 3 | This repository is the official issue tracker for 4 | [Sublime Merge](https://www.sublimemerge.com). 5 | 6 | When [filing an issue](https://github.com/sublimehq/sublime_merge/issues/new/choose), 7 | please be sure to fill out the complete issue template with the information 8 | requested, and provide as many details as you can. 9 | 10 | Lastly, thank you for taking the time to report problems, suggestions and 11 | feature enhancements! 12 | --------------------------------------------------------------------------------