0

We have path environment variable in windows which holds the places for binaries. How can we add some binaries to git bash?

Samdeesh
  • 847
  • 12
  • 20

1 Answers1

0

You would need to modify $PATH in your git bash shell session:

export PATH=$PATH:/c/path/to/binary

You can do so in a $HOME/.bashrc.

Make sure you are using the latest bash from the latest git for Windows (2.5.3). It has a more recent bash than the old msysgit one.

Community
  • 1
  • 1
VonC
  • 1,129,465
  • 480
  • 4,036
  • 4,755