We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
directory=$(pwd) echo 'current directory: ' $directory orgin_repo_url=$(git config --get remote.origin.url) echo 'origin repo url: ' $orgin_repo_url main_branch='[your main branch]' echo 'main branch: ' $main_branch git checkout $main_branch echo 'pull upstream ' $main_branch git pull upstream $main_branch git for-each-ref --format='%(refname:short)' refs/heads | while read branch; do if [[ "$branch" != "master" ]] then echo 'rebase branch: ' $branch git checkout $branch result=$(git rebase master --no-ff --no-commit) if [[ "$result" = *"CONFLICT"* ]] then echo 'has conflict, abort the rebase' git rebase --abort else echo 'rebase success force push to remote' git push origin $branch -f fi fi done git checkout $main_branch git push origin master
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click