我在分叉后克隆了一个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上的变化?工作流程有什么问题?