I m a bit confused about the local and git account online. Posts like this has commands like git fetch upstream
. But how do I use it in the git fork in the browser?
- I have forked a project
project1
into my account (in my git URL). call itprojectforked
. - Then I created an
R
Project in my localRStudio
usingprojectforked
as my origin. call itprojectforked_R_local
- Made changes to few files from
projectforked_R_local
. - In the meantime,
project1
got added with changes
So I am trying to -
- get
project1
changes intoprojectforked
. - Then sync
projectforked_R_local
toprojectforked
. - and then create a
pull request
toproject1
owner to merge the changes inprojectforked
toproject1
.