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"