From 567051c55de687b3a86421d712798bef57ba6a11 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 12 Nov 2017 08:32:19 -0500 Subject: [PATCH] Remove unused list item from git.md --- help/git.md | 1 - 1 file changed, 1 deletion(-) diff --git a/help/git.md b/help/git.md index 3fefca6b..d39bc621 100644 --- a/help/git.md +++ b/help/git.md @@ -9,7 +9,6 @@ - Undo the last commit and delete changes: `grr` - Update your local repository with a remote repository: `git pull -u ` - The most common use is `git pull -u origin master`, although this also works for upstream remotes - - - Show the status of the local repository: `git status` **OR** `gs` **OR** `git s` - Push changes from your local repository to a remote repository: `git push ` **OR** `git push` **OR** `gp` - The most common use is `git push origin master`, which is usually the default for `git push`