# HG changeset patch # User Oleksandr Gavenko # Date 1487018767 -7200 # Node ID 376824d203c23b67f1ea3e1bd95c3c2a953b837e # Parent 75ae6a4ad500175c0d3c8a550c51203a4bce633a Managing branches. diff -r 75ae6a4ad500 -r 376824d203c2 git.rst --- a/git.rst Mon Feb 13 22:44:57 2017 +0200 +++ b/git.rst Mon Feb 13 22:46:07 2017 +0200 @@ -129,6 +129,57 @@ $ git commit -a -m "...." +Managing branches +================= + +Print current branch:: + + $ git branch + +List all known branches:: + + $ git branch -a + +List all known remote branches:: + + $ git branch -r + +List all remote branches (from all remotes):: + + $ git ls-remote + +List remote branches from ``$REMOTE`` remote:: + + $ git ls-remote --heads $REMOTE + $ git remote show $REMOTE + +.. note:: + + Look to ``[remote "..."]`` in ``~/.git/config`` to find out names of possible + remotes. Alternatively get list from:: + + $ git remote show + +Getting branches pointers from default (``origin``) remote:: + + $ git fetch + +Getting branches pointers from ``$REMOTE`` remote:: + + $ git fetch $REMOTE + +.. note:: + + Only curtain branches fetched by default:: + + [remote "origin"] + url = ... + fetch = +refs/heads/*:refs/remotes/origin/* + + Edit ``fetch`` value to change defaults. + + + git analog of 'hg incoming'. ============================