We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e354c6 commit 071e76aCopy full SHA for 071e76a
bin/yahm-ui
@@ -700,7 +700,12 @@ while true; do
700
701
do_menu_expert_gitBranches() {
702
703
- GIT_BRANCHES=$(cd ${YAHM_DIR} && git branch | awk -F ' +' '! /\(no branch\)/ {print $2}')
+ for BRANCH in $(cd ${YAHM_DIR} && git branch -a | grep remotes | grep -v HEAD | grep -v master);
704
+ do
705
+ git branch --track "${BRANCH#remotes/origin/}" "${BRANCH}";
706
+ done
707
+
708
+ GIT_BRANCHES=$(cd ${YAHM_DIR} && git branch -a | awk -F ' +' '! /\(no branch\)/ {print $2}')
709
710
RADIOLIST=()
711
for _branch in $GIT_BRANCHES
0 commit comments