- Limit Git commit messages to 50 characters maximum
- Prefix commit messages with the related Jira work item code
- Extract the Jira code from the branch name or PR title when available
- If the Jira code cannot be determined from branch/PR, ask the user for input
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/sqlite3_adapter_patch.rb | |
module ActiveRecord | |
module ConnectionAdapters | |
class SQLite3Adapter < AbstractAdapter | |
QUOTED_TRUE, QUOTED_FALSE = "'t'", "'f'" | |
def quoted_true | |
QUOTED_TRUE | |
end |