Last active
February 7, 2019 01:04
-
-
Save jverkoey/8042005e6712c5c1cda0dbea23f09faf to your computer and use it in GitHub Desktop.
Personal machine configuration
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
## One-time setup | |
# Deletes references to remote branches during git fetch | |
git config --global fetch.prune true | |
## .bashrc | |
# Pushes the local branch to origin and makes the local branch track the remote | |
gpush() { | |
git push origin $(git rev-parse --abbrev-ref HEAD) -u | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment