New to Git and still a little perplexed.
I have forked a project on github and would like to bring in/merge some recent changes made by the project owner on the original to my fork.
Is this possible?
The project is read only but basically, I’d like to get myself to a point where I can make edits and add code and then also bring in any changes in from the original/master.
Maybe I don’t need to make a fork, and should just clone the master to my local hard drive.
Any help much appreciated,
Yes, you can add the original repository as a remote to your local repository
and then you can
to get that data into your local branches (which you can then push back to your github fork)