Issue Management Guide
Automatic Issue Closure
GitLink supports automatically closing issues through commit messages. Using specific keywords in commit messages can automatically close related issues.
Supported Keywords
fix #123
fixes #123
fixed #123
close #123
closes #123
closed #123
resolve #123
resolves #123
resolved #123
Usage Example
git commit -m "fix #123: Fixed unresponsive login button"
Multiple Issue Closure
You can close multiple issues in one commit message:
git commit -m "fix #123, closes #456: Refactored login module"
Cross-Repository Closure
You can close issues in other repositories by specifying the full path:
git commit -m "fix organization/repo#123: Fixed dependency issue"
Manual Issue Closure
- Open the issue you want to close
- Click the status dropdown menu on the right
- Select "Close Issue"
- Optional: Add a closure reason
Issue Label Management
- Use appropriate labels to categorize issues
- Customize label colors and descriptions
- Support batch label editing
Issue Templates
- Create an
ISSUE_TEMPLATE
folder in the repository's.gitlink
directory - Add template files (markdown format supported)
- Choose from templates when creating new issues
Best Practices
- Use clear titles to describe problems
- Provide complete reproduction steps
- Attach relevant error logs or screenshots
- Keep issue status up to date
- Use automatic closure syntax to link commits and issues