From ab46613780b0644c21a4a4540d2be1754e554868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Tue, 7 May 2024 22:00:20 -0300 Subject: [PATCH] git: fix typo line 107 --- git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git b/git index 15a88286..82b2d55a 100644 --- a/git +++ b/git @@ -104,7 +104,7 @@ git push --delete origin # Branches: To delete all branches on remote that are already merged: git branch --merged | egrep -v "(^*|main|dev)" | xargs git branch -d -# Branches: To make an exisiting branch track a remote branch: +# Branches: To make an existing branch track a remote branch: git branch -u upstream/foo # To see who commited which line in a file: