Switch gitconfig.sh over to use main branch

Change-Id: Iea1a7e61b60c4bf04be2fed9c503eaf7e20fe462
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75783
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Stefan Reinauer 2023-06-10 12:35:51 -07:00
parent 5db03ed14c
commit 16672cab7d
1 changed files with 2 additions and 2 deletions

View File

@ -39,11 +39,11 @@ done
for d in 3rdparty/{blobs,libhwbase,libgfxinit}; do for d in 3rdparty/{blobs,libhwbase,libgfxinit}; do
if [ -d $d ]; then if [ -d $d ]; then
(cd $d || exit 1 (cd $d || exit 1
git config remote.origin.push HEAD:refs/for/master) git config remote.origin.push HEAD:refs/for/main)
fi fi
done done
git config remote.origin.push HEAD:refs/for/master git config remote.origin.push HEAD:refs/for/main
git config alias.sup "!git submodule update --remote --rebase && \ git config alias.sup "!git submodule update --remote --rebase && \
git submodule update --init --checkout" git submodule update --init --checkout"