Languages
[Edit]
EN

Git - xargs with git branch - fatal: branch name required

4 points
Created by:
sienko
683

Problem:

When I execute command line:

git branch | grep -v "master" | xargs git branch -D

I get error:

fatal: branch name required

I'd like to execute another command after &&
but when I get this error it won't work

Solution:

Just add to xargs

--no-run-if-empty

// your command fixed

git branch | grep -v "master" | xargs --no-run-if-empty git branch -D

Explanation:
// when we don't have any local branches except master, run:

git branch | grep -v "master" | xargs git branch -D

// we will get error:

fatal: branch name required

// FIX - add '--no-run-if-empty' to xargs

git branch | grep -v "master" | xargs --no-run-if-empty git branch -D

// we will get no result

From xargs man:

-r, --no-run-if-empty
      If the standard input does not contain any nonblanks, do not
      run the command.  Normally, the command is run once even if
      there is no input.  This option is a GNU extension.

manuals:
http://man7.org/linux/man-pages/man1/xargs.1.html
https://git-scm.com/docs/git-branch

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Git

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join