Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions doc/working-with-git-and-github.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ Before you are able to do this, you either need to install the
using the GitHub CLI or
[install an SSH key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account).

Before pushing, you may want to confirm the name of your remote:

```sh
git remote -v
```

This shows a list of remotes and their corresponding URLs. The default is usually origin.


To push your changes to a remote version of your repository (i.e. to the
version on GitHub) or to "store" your photo, issue the following command:

Expand Down