From c2bb1765e3789ecfa717a9ddf6ad35da64529f18 Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Sun, 27 Feb 2022 02:29:43 +0000 Subject: [PATCH] fix(unitproc/bktemp-initGitRepo):auto set upstream branch --- unitproc/bktemp-initGitRepo | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unitproc/bktemp-initGitRepo b/unitproc/bktemp-initGitRepo index 911a63c..10cfe40 100644 --- a/unitproc/bktemp-initGitRepo +++ b/unitproc/bktemp-initGitRepo @@ -31,7 +31,7 @@ initGitRepo() { # arg2: repoDir # arg3: remoteName # arg4: branchName - # Version: 0.0.8 + # Version: 0.0.9 # Depends: checkURL() 0.0.2, yell(), Bash 5.0.3 # Ref/Attrib: [1]: Test for space-less alphanuemric string. https://unix.stackexchange.com/a/416120 # [2]: Test for argument count. https://stackoverflow.com/q/18568706 @@ -75,6 +75,7 @@ initGitRepo() { fi; yell "STATUS:Adding $repoURL as remote $remoteName"; git remote add "$remoteName" "$repoURL"; + git branch --set-upstream-to "$remoteName"/"$branchName" "$branchName"; yell "STATUS:Pulling branch $branchName from remote $remoteName"; git pull --ff-only "$remoteName" "$branchName"; git fetch "$remoteName"; -- 2.30.2