summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2023-06-10 12:35:51 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2023-09-11 06:56:59 +0000
commit16672cab7dddf57cfc6e015bc710b1296254ee6c (patch)
treeb47e74215bb9f59b4d0549d4feba16d36d88f3bd
parent5db03ed14cd2afde92926e8761e5ee6f8421e634 (diff)
downloadcoreboot-16672cab7dddf57cfc6e015bc710b1296254ee6c.tar.gz
coreboot-16672cab7dddf57cfc6e015bc710b1296254ee6c.tar.bz2
coreboot-16672cab7dddf57cfc6e015bc710b1296254ee6c.zip
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>
-rwxr-xr-xutil/gitconfig/gitconfig.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/gitconfig/gitconfig.sh b/util/gitconfig/gitconfig.sh
index 148d43778891..e91a03965408 100755
--- a/util/gitconfig/gitconfig.sh
+++ b/util/gitconfig/gitconfig.sh
@@ -39,11 +39,11 @@ done
for d in 3rdparty/{blobs,libhwbase,libgfxinit}; do
if [ -d $d ]; then
(cd $d || exit 1
- git config remote.origin.push HEAD:refs/for/master)
+ git config remote.origin.push HEAD:refs/for/main)
fi
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 submodule update --init --checkout"