forked from stan-dev/stan
-
Notifications
You must be signed in to change notification settings - Fork 0
Developer Transition Process
Bob Carpenter edited this page May 20, 2013
·
2 revisions
If you have no changes, just follow the above directions on cloning. If that doesn't work, do:
git pull
That will pull down all the current branches. If you were on working on branch "foo", the new branch will be at "feature/foo".
Commit all changes to foo:
git checkout foo git commit -m "mesage" -a
Check out the new feature branch named "feature/foo"
git checkout feature/foo
Merge the changes in your current branch:
git merge foo
Delete old branch:
git branch -d foo (shouldn't get warnings -- you've already merged into feature/foo)
Now you're back to the "do work" part of the standard developer process.