Skip to content

Commit

Permalink
Update remove_git_conflict_files script to also remove *.prepare
Browse files Browse the repository at this point in the history
Also rename script to remove_temporary_files.sh to reflect this
change.
  • Loading branch information
nyalldawson committed Jun 21, 2015
1 parent cb7f9b4 commit f9387ca
Showing 1 changed file with 5 additions and 6 deletions.
@@ -1,6 +1,6 @@
#!/bin/bash
###########################################################################
# remove_git_confict_files.sh
# remove_temporary_files.sh
# ---------------------
# Date : April 2012
# Copyright : (C) 2012 by Tim Sutton
Expand All @@ -14,11 +14,10 @@
# #
###########################################################################


#
# 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.
#
# A simple script to get rid of QGIS related temporary files left in
# your QGIS source folder by git and the prepare-commit script.

# Tim Sutton, May 2008
find . -name "*.orig" -exec rm -rf {} \;
find . -name "*.prepare" -exec rm -rf {} \;

0 comments on commit f9387ca

Please sign in to comment.