diff --git a/scripts/pull_subtree.sh b/scripts/pull_subtree.sh index 0cec415dcb6f9b39228b178c9c1c0c363e9fea21..4836384b41cf659d537b3f2c357f6bd66419f410 100755 --- a/scripts/pull_subtree.sh +++ b/scripts/pull_subtree.sh @@ -24,11 +24,11 @@ set -x if [[ `pwd` == *"/moose" ]]; then git subtree pull --prefix moose-core \ - https://github.com/BhallaLab/moose-core chennapoda --squash + https://github.com/BhallaLab/moose-core master --squash git subtree pull --prefix moose-examples \ - https://github.com/BhallaLab/moose-examples chennapoda --squash + https://github.com/BhallaLab/moose-examples master --squash git subtree pull --prefix moose-gui \ - https://github.com/BhallaLab/moose-gui chennapoda --squash + https://github.com/BhallaLab/moose-gui master --squash else echo "Run this script from top-level git directory." diff --git a/scripts/push_subtree.sh b/scripts/push_subtree.sh index c238f16c7e10b15d4e34ef539ab36c5a9667bad5..3c1dd6877cfb233dc03b1b3843c87f1cf9ecc345 100755 --- a/scripts/push_subtree.sh +++ b/scripts/push_subtree.sh @@ -24,11 +24,11 @@ set -x if [[ `pwd` == *"/moose" ]]; then git subtree push --prefix moose-core \ - https://github.com/BhallaLab/moose-core chennapoda --squash + https://github.com/BhallaLab/moose-core master --squash git subtree push --prefix moose-examples \ - https://github.com/BhallaLab/moose-examples chennapoda --squash + https://github.com/BhallaLab/moose-examples master --squash git subtree push --prefix moose-gui \ - https://github.com/BhallaLab/moose-gui chennapoda --squash + https://github.com/BhallaLab/moose-gui master --squash else echo "Run this script from top-level git directory."