From d58904754da5127b43247684e55da53d78df03c2 Mon Sep 17 00:00:00 2001 From: Artem-Kh357 Date: Fri, 26 Sep 2025 14:07:16 +0200 Subject: [PATCH] Update git-basics.rst Corrected typo in the line 247 - ''git push'' publishes local changes --- source/lessons/L2/git-basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lessons/L2/git-basics.rst b/source/lessons/L2/git-basics.rst index 345b81004..f9501068d 100644 --- a/source/lessons/L2/git-basics.rst +++ b/source/lessons/L2/git-basics.rst @@ -244,7 +244,7 @@ Now we are ready to push the local changes to GitHub using :code:`git push` (but Now you should see the updates in GitHub! Go and have a look at your personal repository in https://github.com/Geo-Python-2024/ . -On the command line, ``git pull`` fetches and merges changes from the remote repository, and ``git pull`` publishes local changes. +On the command line, ``git pull`` fetches and merges changes from the remote repository, and ``git push`` publishes local changes. That's all you need to know about Git for now :)