I have permissions to private Github repository under employer's Github account for my personal github login. I forked the repository so I could work on it in my personal github account, and then commit there. Everything works as expected, but when someone commits and pushes to the employer's private github repository it doesn't show up in my forked github repository. There is no merge option from the source to the forked repo. How do people keep this in sync??
|
GitHub forks don't synchronize automatically. You have to merge changes to your personal repository and then push them to your repository and GitHub. |
|||||||
|
|
When you fork a repository, it creates a duplicated repository to which you can push changes. However, it is independent of the original repository, so it does not automatically update itself. If you want to grab the latest changes from your employer's repository, you will first have to add your employer's repository as a remote repository
You choose what name you want to provide, but
Typically, you will be pulling the
|
|||
|
|