Frequently asked questions for git and git workflows.

What is “origin”?

Origin is the default name for the remote server. “Remotes” can be named anything, you can see the names of all your remotes with the command remote

$ git remote -v
origin	git@github.com:jsoverson/gitfaq.git (fetch)
origin	git@github.com:jsoverson/gitfaq.git (push)

Share