Created
March 25, 2014 18:18
-
-
Save jaybill/9767886 to your computer and use it in GitHub Desktop.
Git style ignoring for Subversion
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
| # Use '_ss' instead of 'svn status' in the directory where your repo is | |
| # version a file in the root of your repo called '.svnignore' that | |
| # has one ignore pattern per line | |
| alias _ss="svn status | egrep -v '`cat .svnignore|perl -p -e 's/\n/|/'`'" | |
| # Other useful svn aliases | |
| alias _sa="svn add" | |
| alias _su="svn up" | |
| alias _sc="svn ci --message |
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
| # Add this to the end of your .bash_profile or .bashrc | |
| source ~/.bash_aliases |
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
| player/.tmp | |
| player/app/bower_components | |
| player/node_modules | |
| player/tmp | |
| shell/.tmp | |
| shell/app/bower_components | |
| shell/app/styles/.sass-cache | |
| shell/app/styles/main.css | |
| shell/node_modules | |
| shell/tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment