From 578cf5613e716206622033b74a318c7f8162bf03 Mon Sep 17 00:00:00 2001 From: atv2016 Date: Sat, 30 Nov 2019 12:10:17 +0000 Subject: [PATCH] remote -v instead of remove -v --- 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```