When I run 'git remote show origin' the output states that a git push/
pull/fetch will fetch and push a number of branches on the remote.

Is there a way to push only a particular branch and ignore the others?



The git branch docs show this example.
***
Delete an unneeded branch

    $ git clone git://git.kernel.org/.../git.git my.git
    $ cd my.git
    $ git branch -d -r origin/todo origin/html origin/man   (1)
***

Does the 'git branch -d -r' option delete the local copies of the
remote branches, or the remote copies?

If I were to apply them without the origin prefix would it delete just
the local ones?

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.

Reply via email to