Skip to content

Commit

Permalink
new script
Browse files Browse the repository at this point in the history
  • Loading branch information
rboman committed Jan 22, 2024
1 parent 1f8a65d commit abf4a95
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions bin/mtf_merge_master_into_boman.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash

# merge master into boman branch for all Metafor repos
# this script should be run from the root directory of the workspace

# note: the script does not push boman branch to origin


function update_repo {
cd $1
git checkout boman
git pull
git merge origin/master
cd ..
}

# update each repo one by one
update_repo oo_meta
update_repo oo_nda
update_repo keygen
update_repo parasolid
update_repo MetaforSetup

# linuxbin uses "master" branch
cd linuxbin
git checkout master
git pull

# pull the changes manually...

0 comments on commit abf4a95

Please sign in to comment.