There’s a project I wish to fork that is hosted not on Github, but on a separate public git server. What git bash command or obvious feature am I missing that allows me to fork this repository? Thanks
You basically need to treat each as a separate remote for a local repository.
- Clone the repository to your machine, if you haven’t already (that automatically adds the public server as the
origin
remote). - Create a repository on Github for your fork.
- Add the Github repository as a remote to your local repository.
- Push to the Github remote.
For details, see: