On 2014.01.24 at 18:07 +0100, Markus Trippelsdorf wrote:
On 2014.01.24 at 16:37 +0000, Jim Garrison wrote:
quoted
quoted
-----Original Message-----
Behalf Of Markus Trippelsdorf
Sent: Friday, January 24, 2014 1:01 AM
Subject: Globbing for ignored branches?
I would like to ignore branches that match a certain pattern, e.g.:
[snip]
quoted
Is it possible to ignore all branches that match "hjl"?
If you mean ignore them when you do "git branch -a", then
git branch -a |grep -v hjl
If you mean "ignore" in some other scenario you need to be more
specific about what you want.
I want to them when I run "git pull".
ignore
--
Markus