how to add origin on git code example
Example 1: git add origin command
# To add origin
$ git remote add origin <github repo link>
Example 2: add remote origin git
$ git remote add origin https://github.com/user/repo.git
# Set a new remote
$ git remote -v
# Verify new remote
> origin https://github.com/user/repo.git (fetch)
> origin https://github.com/user/repo.git (push)