`_, for example,
``https://github.com/OWNER/REPOSITORY.git``
- open a terminal
.. raw:: html
$ cd ~/bluesky
$ git remote add origin https://github.com/OWNER/REPOSITORY.git
# Set a new remote
$ git remote -v
# Verify new remote
> origin https://github.com/OWNER/REPOSITORY.git (fetch)
> origin https://github.com/OWNER/REPOSITORY.git (push)
$ git push -u origin main
# Push repo to remote
For more information, you can refer to the official GitHub documentation:
- which URL to use (``ssh`` vs ``https``): `About remote repositories `_
- ``git remote add`` command: `Adding a remote repository `_
- ``git push`` command: `Pushing to a remote repository `_