git - how to upload files to a forked version of my gitHub repository -
i created repository on github , uploaded local module it.
i invited contributers join project. forked original repository on github , called :
thecopy
i have substiancially changed local version of module (the version on laptop) , want upload forked version on github account ('thecopy').
i not clear how that
i tried :
> git push origin thecopy but nothing happened.
would appricate advice.
just push changes main repo has synced , on forked account why don't run:
git fetch upstream git merge upstream/master if haven't setup upstream:
git remote add upstream https://github.com/original_owner/original_repository.git you can refer here official documentation. additionally, check out following resources learn git:
Comments
Post a Comment