Reputation: 1
How do I merge code in a forked repository to the main repository(from where the fork was created) where I have push permission. The main repository is forked for some development and now we need to get the changes to it merged in the main repository. And there is no pull request as well.
Upvotes: 0
Views: 46
Reputation: 17455
git fetch
git merge
git push
steps 1 & 2 can be combined into a signle one with git pull
Upvotes: 1