-
Notifications
You must be signed in to change notification settings - Fork 5
Eonboard contributer workflow
zhanghui edited this page Jul 2, 2015
·
1 revision
by @zhanghui
git clone [email protected]:zhanghui9700/eonboard.git
$ git remote
>origin
$ git remote add eoncloud [email protected]:eoncloud-dev/eonboard.git
$ git remote -v
>eoncloud [email protected]:eoncloud-dev/eonboard.git (fetch)
>eoncloud [email protected]:eoncloud-dev/eonboard.git (push)
>origin [email protected]:zhanghui9700/eonboard.git (fetch)
>origin [email protected]:zhanghui9700/eonboard.git (push)
$ git fetch eoncloud
$ git merge eoncloud/master
$ git checkout -b feature/contract-crud master
Switched to a new branch 'feature/contract-crud'
...
do some changes at this branch
...
$ git add .
$ git commit -a
$ git featch eoncloud
$ git checkout master (if needed)
$ git merge eoncloud/master (if needed)
$ git checkout feature/contract-crud
$ git rebase master
$ git push origin feature/contract-crud
Reference:
[2] git rebase
