fix(unitproc/bktemp-initGitRepo):auto set upstream branch
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sun, 27 Feb 2022 02:29:43 +0000 (02:29 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sun, 27 Feb 2022 02:29:43 +0000 (02:29 +0000)
unitproc/bktemp-initGitRepo

index 911a63c3bde38c621cb2ed7a47ee6f992cc891e9..10cfe4025606d9cc6663bccea95d63d574ec77db 100644 (file)
@@ -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";