前言
Last updated
$ git clone git@github.com:user/openstack_code_Neutron.git
$ cd openstack_code_Neutron
$ git config user.name "User"
$ git config user.email user@email.com$ #do some change on the content
$ git commit -am "Fix issue #1: change helo to hello"
$ git push$ git remote add upstream https://github.com/yeasy/openstack_code_Neutron
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
$ git push -f origin master