follow-main.sh

1 개요[ | ]

follow-main.sh
#!/bin/bash
REPOS=$(find * -maxdepth 0 -type d)
select REPO in $REPOS
do
  cd $REPO/
  set -x
  git checkout main
  git reset --hard
  git pull
  git merge main
  git push
  exit
done

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}