前言
更新历史:
参加步骤
$ git clone git@github.com:user/openstack_code_Magnum.git $ cd openstack_code_Magnum $ 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_Magnum $ git fetch upstream $ git checkout master $ git rebase upstream/master $ git push -f origin master
Last updated