From f6e90091105f1105e2638a7b568f0dcac157388d Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Sat, 17 Apr 2021 16:39:39 +0100 Subject: [PATCH] Updated Git Tips (markdown) --- Git-Tips.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Git-Tips.md b/Git-Tips.md index e956580..7e52e85 100644 --- a/Git-Tips.md +++ b/Git-Tips.md @@ -50,6 +50,8 @@ More information is available in the [Contributing guidelines][contributing]. 1. You can delete local branches when you are done with them (`git branch -d `) 1. You can also update your refs to reflect any remote branches that have been deleted (`git fetch --prune`) +1. You can view all branches that you have a local copy of (`git branch`) +1. You can also view ALL branches, including those only on the remote (`git branch -a`) # Rewriting history