Silly question about Git.
Working simply from the terminal with #git is it possible to merge commits from a project your clone from url A to another fork you merged from url B?
Login to reply
Replies (1)
Yes. Just setup different remotes.
Use `git remote add "<pick a remote memorabe identifier like 'fork'>" "<fork URL>".
After a git fetch -a, you should have commits from all remotes available on your local index. You can now merge commits from any fork.