File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 22
22
include $(TOOLS_MAKE_LIB_DIR ) /git/commitizen.mk
23
23
include $(TOOLS_MAKE_LIB_DIR ) /git/notes.mk
24
24
25
+
25
26
# RULES #
26
27
27
28
# /
Original file line number Diff line number Diff line change 21
21
# Define the directory containing git notes:
22
22
GIT_NOTES_DIR ?= $(ROOT_DIR ) /docs/git-notes
23
23
24
+
24
25
# RULES #
25
26
26
27
# /
27
28
# Applies Git notes from the `docs/git-notes` directory.
28
29
#
29
30
# ## Notes
30
31
#
31
- # - This rule applies git notes where the file name (without the .txt extension) is the git commit hash and the content is the note.
32
+ # - This rule applies Git notes where the file name (without the .txt extension) is the Git commit hash and the content is the note.
32
33
#
33
34
# @example
34
35
# make apply-git-notes
35
36
# /
36
37
apply-git-notes :
37
- $(QUIET ) echo " Applying git notes..."
38
+ $(QUIET ) echo " Applying Git notes..."
38
39
$(QUIET ) for note in $( GIT_NOTES_DIR) /* .txt; do \
39
40
if [ -f " $$ note" ]; then \
40
41
commit_hash=$$(basename "$$note" .txt) ; \
You can’t perform that action at this time.
0 commit comments