From 5f43e29dbd99a1289057c89244744adae8568aef Mon Sep 17 00:00:00 2001 From: Justin Marshall Date: Sat, 11 Aug 2018 18:13:23 -0400 Subject: [PATCH] Fix typo in 'git remote' command --- TurtorialInfo/AdditionalGitTechniques.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TurtorialInfo/AdditionalGitTechniques.md b/TurtorialInfo/AdditionalGitTechniques.md index 76e530f..aebffeb 100644 --- a/TurtorialInfo/AdditionalGitTechniques.md +++ b/TurtorialInfo/AdditionalGitTechniques.md @@ -26,7 +26,7 @@ Once that online repository has been created, you can push your changes to it by Once your repo is set to be pushed onto GitHub, run: ```git remote add origin ``` -Then run ```git remove -v``` which verifies the remote repository exists +Then run ```git remote -v``` which verifies the remote repository exists Finally you can push your code to GitHub using ```git push origin master```