Way to specify an exclusion refspec?
From: Dun Peal <hidden>
Date: 2016-06-15 22:50:09
Hi. The manpage describes how to specify an inclusion refspec, like for example the default one that gets set for `origin` in `.git/config`, which tells git to include all (`*`) heads in every fetch operation: +refs/heads/*:refs/remotes/origin/* But how about specifying an exclusion refspec? For instance, we want to fetch all heads (`*`) except `foo`, or all heads beginning in "ba" (`ba*`) except `bar`. Thanks, D