This file contains 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
# Description: Custom command to perform git add and git commit together. | |
# Execution Command: git add-commit -m 'My commit message' | |
git config --global alias.add-commit '!git add -A && git commit' | |
# Description: Custom command to update a branch with changes from the remote master. | |
# Execution Command: git update-branch | |
git config --global alias.update-branch '!git checkout master && git pull && git checkout - && git rebase master' | |
#Description: Custom command to remove all merged local branches | |
# Execution Commad: git remove-merged |
This file contains 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
# Ignore Mac Files | |
.DS_Store | |
# Ignore Testing Configurations | |
config/test | |
# Ignore Temp Directory | |
tmp | |
# Logs |
This file contains 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
# The below enables Chrome's always allow checkbox for opening apps that was disabled in the latest Chrome update. | |
defaults write com.google.Chrome ExternalProtocolDialogShowAlwaysOpenCheckbox -bool true |