Tag: repository

  • Bash Completion, Along with SVN and Git Tab Completion

    Time is precious. I installed these utilities to save some of it: bash-completion svn-completion git-completion I install bash-completion via MacPorts on my Macs. sudo port install bash-completion I then saved this svn-completion script to locally, and did a sudo cp: sudo cp bash_completion /opt/local/etc/bash_completion.d/svn-completion.sh Note: “bash_completion” is the file linked on “svn-completion script“. I hope…

  • Delete .SVN Directories

    Ever accidentally do an svn checkout instead of an export? Here’s a command-line snippet to take care of those hidden .SVN directories: rm -rf `find . -type d -name .svn` Warning: Take great care when using “rm -rf” always.