File tree Expand file tree Collapse file tree 5 files changed +19
-6
lines changed
Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 77.gitattributes text eol =lf
88.gitignore text eol =lf
99.gitmodules text eol =lf
10+ .tgitconfig text eol =lf
1011allowed_signers text eol =lf
1112
1213docs /CODEOWNERS text eol =lf
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: NONE
2+ # SPDX-License-Identifier: CC0-1.0
3+
4+ [core]
5+ hooksPath = .git-hooks
6+ [gpg "ssh"]
7+ allowedSignersFile = allowed_signers
8+ [format]
9+ signOff = true
10+ [tgit]
11+ projectlanguage = 1033
12+ warnnosignedoffby = true
13+ logminsize = 1
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ version = 1
44path = [
55 " .public-keys/*.gpg" ,
66 " fastlane/metadata/android/en-US/*.txt" ,
7+ " gradle/wrapper/gradle-wrapper.properties" ,
78 " allowed_signers" ,
89 " Gemfile.lock"
910]
Original file line number Diff line number Diff line change @@ -73,15 +73,15 @@ STATUS=0
7373
7474printf ' %s\n' " Repo dir: ${PWD?} " || STATUS=" ${?} "
7575
76+ test -d " ${PWD:? } /.git-hooks"
77+ config_var core.hooksPath ' .git-hooks' " ${?} " || STATUS=" ${?} "
78+
7679test -f " ${PWD:? } /allowed_signers"
7780config_var gpg.ssh.allowedSignersFile ' allowed_signers' " ${?} " || STATUS=" ${?} "
7881
7982setup_gpg || STATUS=" ${?} "
8083
81- test -d " ${PWD:? } /.git-hooks"
82- config_var core.hooksPath ' .git-hooks' " ${?} " || STATUS=" ${?} "
83-
84- config_var format.signOff " true" || STATUS=" ${?} "
84+ config_var format.signOff ' true' || STATUS=" ${?} "
8585config_var alias.cm ' commit -s' || STATUS=" ${?} "
8686
8787test " ${STATUS:? } " = 0 || printf ' %s\n' " Error code: ${STATUS:? } "
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments