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

Time:09-01

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

CodePudding user response:

Just do:

git branch -a > result.txt
  • Related