Remotes: Adding a remote location to where you can publish your repository. You can add mutiple remote location.
git remote -v
origin https://github.com/akoserwal/git-in-real.git (fetch)
origin https://github.com/akoserwal/git-in-real.git (push)
Name of remote location can be any thing based on your use-case & ease of use.
git remote add ch1-remote-origin https://github.com/akoserwal/git-in-real.git
git remote -v
git checkout -b ch1-remotes-final
git push ch1-remote-origin ch1-remotes-final