git rebase不显示提交

时间:2013-12-16 14:40:44

标签: git github

我在分叉后克隆了一个github仓库并且做了

git remote add upstream (url)
git checkout --track origin/master
git checkout develop
git checkout -b new_feature_name

然后进行一些更改

git commit
git fetch upstream
git checkout develop
git rebase upstream/develop
git checkout new_feature_name
git rebase develop
git push

git说一切都是最新的(为什么!!) 但我没有看到github上的变化?工作流程有什么问题?

0 个答案:

没有答案