Remote (Git)
Tuesday, 28 January 2014, 22:59
A remote is a URL to a repository from which you can pull changes and to which you can push changes. After cloning a remote repository to a local folder with the git clone [remote] [local] command a remote is added automatically for this remote repository location with the default name origin. The push and pull commands use the origin remote as default as shown in the next code snippet.
Adding and listing remotes can be done as shown below.