Hi , I forked the original repository(https://github.com/phpmyadmin/phpmyadmin.git) of PMA .. then I cloned the fork repository (https://github.com/<my user name>/phpmyadmin.git)
git remote add upstream https://github.com/<my user name>/phpmyadmin.git git fetch upstream git rebase upstream master
But it said that local repo is already up to date
then I used following commands.
git remote add orig git://github.com/phpmyadmin/phpmyadmin.git git fetch orig git rebase orig master
this comands worked .... but It seems to be that my forked repository(not local repo) didn't update
1)Is there any thing to do? 2) will it be a problem when I do a pull request?
regards