Ravish Ranjan
Ravish Ranjan

Reputation: 79

Is there a way to export output of "git branch -a" in a text file?

I would like to export output of git command git branch -a in a text file.

Upvotes: 0

Views: 874

Answers (1)

Just do:

git branch -a > result.txt

Upvotes: 1

Related Questions