blob: 1eb6d3fd2627922d5e0273c89e5ef7e09ef00de1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Contributed Files
## Commit Template
To install our commit template, use following command (use --global to use it in your global .gitconfig):
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 commit.gpgsign true
To enable for all projects:
git config --global commit.gpgsign true
|