Bash running script on Windows

I am using a Bash shell with Git on Windows. I have a number of aliases that I want to configure when opening a shell. Is there a configuration file that is called for every instance of Bash that has been raised?

+8
windows bash
source share
1 answer

Thanks @Blender, that was the answer. Here is what I did ...

Start Bash (Git Bash)

cd touch .bashrc notepad .bashrc source .bashrc # To make changes available without restart 

entered aliases ... save
close bash
start bash
aliases are now available!

+13
source share

All Articles