From 7855ba53c1843f028bb8a13486347a6c577667b8 Mon Sep 17 00:00:00 2001 From: Riyas Valiyadan Date: Wed, 13 Jan 2021 11:44:12 +0530 Subject: [PATCH 1/3] Update adding-an-existing-project-to-github-using-the-command-line.md --- ...ding-an-existing-project-to-github-using-the-command-line.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md index cde638a77d..d1d0f80df2 100644 --- a/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -43,7 +43,7 @@ versions: ![Copy remote repository URL field](/assets/images/help/repository/copy-remote-repository-url-quick-setup.png) 8. In Terminal, [add the URL for the remote repository](/articles/adding-a-remote) where your local repository will be pushed. ```shell - $ git remote add origin remote repository URL + $ git remote add origin remote_repository_URL # Sets the new remote $ git remote -v # Verifies the new remote URL From dac5fb61c7c4d87d9ac6dac24c8d7d2d942c3caa Mon Sep 17 00:00:00 2001 From: Riyas Valiyadan Date: Tue, 19 Jan 2021 18:53:33 +0530 Subject: [PATCH 2/3] Update content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md Co-authored-by: Felicity Chapman --- ...ding-an-existing-project-to-github-using-the-command-line.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md index d1d0f80df2..280c7ab4ab 100644 --- a/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -43,7 +43,7 @@ versions: ![Copy remote repository URL field](/assets/images/help/repository/copy-remote-repository-url-quick-setup.png) 8. In Terminal, [add the URL for the remote repository](/articles/adding-a-remote) where your local repository will be pushed. ```shell - $ git remote add origin remote_repository_URL + $ git remote add origin <REMOTE_URL> # Sets the new remote $ git remote -v # Verifies the new remote URL From 860d46bbf75f170d26be3ea4088e40ec0895a91e Mon Sep 17 00:00:00 2001 From: Felicity Chapman Date: Wed, 20 Jan 2021 11:56:30 +0000 Subject: [PATCH 3/3] Update lines 83 and 120 with the same change --- ...ng-an-existing-project-to-github-using-the-command-line.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md index 280c7ab4ab..d4d8512eee 100644 --- a/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/content/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -80,7 +80,7 @@ versions: ![Copy remote repository URL field](/assets/images/help/repository/copy-remote-repository-url-quick-setup.png) 8. In the Command prompt, [add the URL for the remote repository](/articles/adding-a-remote) where your local repository will be pushed. ```shell - $ git remote add origin remote repository URL + $ git remote add origin <REMOTE_URL> # Sets the new remote $ git remote -v # Verifies the new remote URL @@ -117,7 +117,7 @@ versions: ![Copy remote repository URL field](/assets/images/help/repository/copy-remote-repository-url-quick-setup.png) 8. In Terminal, [add the URL for the remote repository](/articles/adding-a-remote) where your local repository will be pushed. ```shell - $ git remote add origin remote repository URL + $ git remote add origin <REMOTE_URL> # Sets the new remote $ git remote -v # Verifies the new remote URL