
you can use any name instead of "origin". "origin" is the local name of the remote repository. Then copy and paste the first command from the GitHub page git remote add origin :ModulesUnraveledScreencast/My-Existing-Git-Project.git (This. Note: "origin" is a convention not part of the command.

You can verify that the remote URL has changed, with command git remote -v. Make changes to your local repository and push these changes. For example, origin or upstream are two common choices.įor example you can change your remote's URL from SSH to HTTPS with the git remote set-url command. Push the contents of your local repository to the remote. The git remote set-url command takes two arguments: The git remote set-url command changes an existing remote repository URL. The git remote add command takes two arguments: This command is used to add a new remote, you can use this command on the terminal, in the directory of your repository. If you would like to use a different name for your remote, see the 'Rename a remote' section below. However, it looks like this will always use the default remote name heroku for the remote. git then the repository not exists, so you have to add origin with command git remote add As voke points out, you can alternatively use a Heroku CLI command to add your remote. You can check remote with command git remote -v it will show remote url after name, or if this command gives error like fatal: Not a git repository (or any of the parent directories). So the command git remote set-url will only work if you've either cloned the repository or manually added a remote called origin. You can not call remote set-url origin just after git init, Because the git remote set-url command will not create origin, but it changes an existing remote repository URL. To know about the list of all branches you have in your repository type : git branch This command simply pushes your files to the remote repository.Git has a concept of something known as a "branch", so by default everything is pushed to the master branch unless explicitly specified an alternate branch. git remote set-url origin command means that if at any stage you wish to change the location of your repository(i.e if you made a mistake while adding the remote path using the git add command) the first time, you can easily go back & "reset(update) your current remote repository path" by using the above command.

Git add remote github series#
git remote add origin This command is the second step in the command series after you initialize git into your current working repository using git init.
