How do I access a default path?

0

How to make Git 2.1.0 Windows access a default path (example: projetos wamp/www ), in earlier versions I made it easy, Git>Propiedades>Iniciar in: C:/wamp/www... and that's it.

I did this in this current version but it does not work. What will it be like now?

    
asked by anonymous 17.09.2014 / 03:20

1 answer

1

I do not know if git has a standard way of doing this, but you can change the current directory at git bash startup

Creating a .bashrc file in your default directory and putting the command below, git bash will point to this directory as soon as you start:

cd /c/wamp/www

This file may contain more content and everything that exists in it will run when git bash is started.

    
17.09.2014 / 16:22