From 4efb8bcff037af265c2ce8a5249a2326b5c204a1 Mon Sep 17 00:00:00 2001 From: Melkamu Gishu <25606564+melkyed@users.noreply.github.com> Date: Wed, 5 Nov 2025 19:31:22 -0500 Subject: [PATCH] Fix command to rename git remote from origin to upstream --- 01_materials/04_git_clone_add_push.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_materials/04_git_clone_add_push.md b/01_materials/04_git_clone_add_push.md index ec5ac86..b7d1633 100644 --- a/01_materials/04_git_clone_add_push.md +++ b/01_materials/04_git_clone_add_push.md @@ -33,7 +33,7 @@ Let's rename the instructor repo to `upstream`, meaning where we get our changes Then set our fork as the `origin`. ```bash -git remote mv origin upstream +git remote rename origin upstream git remote -v git remote add origin https://github.com/[your-username]/recipe-book.git git remote -v