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
PrintScreen::AppsKey | |
Launch_Mail::Volume_Down | |
Browser_Home::Volume_Up |
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
alias gc='git checkout' | |
alias gp='git push' |
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
//sort remote branches by oldest last commit date | |
git branch -r --sort=committerdate | xargs echo | |
//pick all remote branches and remove origin/ part or use something sed to do it automatically (https://stackoverflow.com/a/40010115) | |
git push origin --delete <remote branches here> |