File tree 3 files changed +7
-7
lines changed
developer-guide/modules/ROOT/pages/dev-environment
user-guide/modules/ROOT/pages
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ After cloning this repository you need to install the Git hooks via:
8
8
9
9
[,console]
10
10
----
11
- $ git config core.hooksPath .githooks
11
+ $ git config set core.hooksPath .githooks
12
12
----
13
13
14
14
And configure the https://git-scm.com/docs/git-config#Documentation/git-config.txt-blameignoreRevsFile[ignore-revs-file]:
15
15
16
16
[,console]
17
17
----
18
- $ git config blame.ignoreRevsFile .git-blame-ignore-revs
18
+ $ git config set blame.ignoreRevsFile .git-blame-ignore-revs
19
19
----
20
20
====
Original file line number Diff line number Diff line change @@ -20,16 +20,16 @@ Set the following Git configuration variables on your repository if you want to
20
20
21
21
[,shell]
22
22
----
23
- $ git config branch.autosetuprebase always
24
- $ git config --bool pull.rebase true
23
+ $ git config set branch.autosetuprebase always
24
+ $ git config set --bool pull.rebase true
25
25
----
26
26
27
27
Or set it globally:
28
28
29
29
[,shell]
30
30
----
31
- $ git config --global branch.autosetuprebase always
32
- $ git config --global --bool pull.rebase true
31
+ $ git config set --global branch.autosetuprebase always
32
+ $ git config set --global --bool pull.rebase true
33
33
----
34
34
35
35
More Information:
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ $ touch f && chmod u+x f
90
90
$ touch s.sh
91
91
$ mkdir .githooks
92
92
$ touch .githooks/pre-commit && chmod u+x .githooks/pre-commit
93
- $ git config core.hooksPath .githooks
93
+ $ git config set core.hooksPath .githooks
94
94
$ mkdir -p node_modules/some-module
95
95
$ touch node_modules/some-module/some-script && chmod u+x node_modules/some-module/some-script
96
96
$ touch node_modules/some-module/some-script-without-execute-permission.sh
You can’t perform that action at this time.
0 commit comments