From 3dcab1f843fa67a7ba43f0a9693ce4e3a7c8737b Mon Sep 17 00:00:00 2001 From: Anchal Date: Thu, 16 Jul 2015 17:39:38 +0530 Subject: [PATCH] list remote reference and get list of branches --- tips.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tips.json b/tips.json index ebeaba9..c839a05 100644 --- a/tips.json +++ b/tips.json @@ -51,6 +51,18 @@ "title": "Changing a remote's URL", "tip": "git remote set-url origin " }, + { + "title": "Get list of all remote references", + "tip": "git remote || git remote show" + }, + { + "title": "Get list of all local and remote branches", + "tip": "git branch -a" + }, + { + "title": "Get only remote branches", + "tip": "git branch -r" + }, { "title": "Stage parts of a changed file, instead of the entire file", "tip": "git add -p"