Created
June 21, 2022 15:57
-
-
Save howellcc/f486b59785037c72b02b243b794e3505 to your computer and use it in GitHub Desktop.
Git Bash .bashrc modifications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# generated by Git for Windows | |
# location C:\Users\<username>\.bash_profile | |
test -f ~/.profile && . ~/.profile | |
test -f ~/.bashrc && . ~/.bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is based on the assumption that Git Bash didn't create a .bashrc file for you. | |
# location C:\Users\<username>\.bashrc | |
#!/bin/bash | |
alias ..='cd ..' | |
alias la='ls -aAh' | |
alias ll='ls -lAh' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment