QGIS/scripts/remove_git_confict_files.sh

10 lines
228 B
Bash
Raw Normal View History

2012-04-08 14:54:01 +02:00
#!/bin/bash
#
# A simple script to get rid of .orig and .rej files left in
# your repository by svn. It will request confirmation before
# deleting each file.
#
# Tim Sutton, May 2008
find . -name "*.orig" -exec rm -rf {} \;