Index: checkout.py |
diff --git a/checkout.py b/checkout.py |
index 68b908ca5debc7b7d824da23e09400c8e977dfac..6fb32d5107971c0d8970331ca2b9565d451b31fc 100644 |
--- a/checkout.py |
+++ b/checkout.py |
@@ -393,7 +393,7 @@ class SvnCheckout(CheckoutBase, SvnMixIn): |
self._check_call_svn( |
['checkout', self.svn_url, self.project_path] + flags, cwd=None) |
else: |
- scm.SVN.Revert(self.project_path) |
+ scm.SVN.Revert(self.project_path, no_ignore=True) |
# Revive files that were deleted in scm.SVN.Revert(). |
self._check_call_svn(['update', '--force'] + flags) |
return self._get_revision() |