<t>Create a .bashrc file under ~/.bashrc and away you go. Similarly for ~/.gitconfig.<br/>
<br/>
~ is usually your C:\Users\ folder. Typing echo ~ in the Git Bash terminal will tell you what that folder is.<br/>
<br/>
If you can't create the file (e.g. running Windows), run the below command:<br/>
<br/>
copy > ~/.bashrc<br/>
<br/>
```<br/><br/>
The window will output an error message (*command not found*), but the file will be created and ready for you to edit.<br/>
<br/>
Alternatively, you can create the~/.bashrcfile with:<br/>
<br/>touch ~/.bashrc<br/>
<br/>
```</t>