I cloned a github repo after forking it and did
git remote add upstream (url) git checkout --track origin/master git checkout develop git checkout -b new_feature_name then some changes and
git commit git fetch upstream git checkout develop git rebase upstream/develop git checkout new_feature_name git rebase develop git push git says everything is upto date(why!!) but i am not seeing changes on github??whats wrong with the workflow?