diff options
-rw-r--r-- | CONTRIBUTING.md | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6ae7f6ca..1eb6d3fd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,10 +4,18 @@ To install our commit template, use following command (use --global to use it in your global .gitconfig): - git config [--global] commit.template "~/path_to_leap_platform/contrib/leap-commit-template" + git config commit.template "~/path_to_leap_platform/contrib/leap-commit-template" + +To use for all projects: + + git config --global commit.template "~/path_to_leap_platform/contrib/leap-commit-template" ## Signing commits We very much appreciate signed commits, you can stop forgetting it like this: - git config [--global] commit.gpgSign + git config commit.gpgsign true + +To enable for all projects: + + git config --global commit.gpgsign true |