From: Don Zickus <[email protected]>

The kernel workflow is adding complexity.  Let's hide some of that complexity
behind git aliases.  Instead of having the developer manually add them all
the time, add a make command to 'include' kernel aliases.

A new command 'make rh-gitconfig' runs

git config --local --add include.path "../redhat/kernel.gitconfig"

and adds an include to the local repo's .git/config file.

Over time more workflow commands can be added to help developers.

Start with a stub config file.

Signed-off-by: Don Zickus <[email protected]>
---
 redhat/Makefile         | 6 ++++++
 redhat/kernel.gitconfig | 2 ++
 2 files changed, 8 insertions(+)
 create mode 100644 redhat/kernel.gitconfig

diff --git a/redhat/Makefile b/redhat/Makefile
index 0118e5b9e2e9..88860dd83069 100644
--- a/redhat/Makefile
+++ b/redhat/Makefile
@@ -133,6 +133,10 @@ rh-kabi-dw-check: rh-kabi
        @echo "**** End of KABI DWARF-based comparison report ****"
        @rm -rf $(KABIDW)/base/$(CURARCH).tmp
 
+rh-gitconfig:
+       @git config --get include.path | grep -q 'redhat/kernel.gitconfig' || \
+       git config --local --add include.path "../redhat/kernel.gitconfig"
+
 rh-configs-commit: rh-configs-prep
        @cd $(REDHAT)/configs; VERSION=$(KVERSION) ./generate_all_configs.sh 
$(FLAVOR) 1; \
        ./process_configs.sh -z $(PACKAGE_NAME) $(KVERSION) "" $(FLAVOR)
@@ -363,6 +367,7 @@ rh-help:
        @echo  '  rh-cross-all-rpms - Build RPMs for all supported archs using 
a cross compiler.'
        @echo  ''
        @echo  'Configuration targets:'
+       @echo  '  rh-gitconfig      - include redhat/kernel.gitconfig in repo 
git config'
        @echo  '  rh-configs        - Create RHEL config files in 
redhat/config/.'
        @echo  ''
        @echo  'For detailed description and full list of targets, run `make 
rh-full-help`.'
@@ -442,6 +447,7 @@ rh-full-help:
 
        @echo  ''
        @echo  'Configuration targets:'
+       @echo  '  rh-gitconfig  - include redhat/kernel.gitconfig in repo git 
config'
        @echo  '  rh-configs  - Creates config files for RHEL $(RHEL_MAJOR) 
architectures, cleans them'
        @echo  '                by running make nonint_oldconfig, and copies 
them to'
        @echo  '                redhat/configs/ directory. This is the target 
to use for a config!'
diff --git a/redhat/kernel.gitconfig b/redhat/kernel.gitconfig
new file mode 100644
index 000000000000..28d7d4a21201
--- /dev/null
+++ b/redhat/kernel.gitconfig
@@ -0,0 +1,2 @@
+# DO NOT add personal info in here!!
+[alias]
-- 
2.26.2
_______________________________________________
kernel mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]

Reply via email to