Mercurial > hgsubversion
diff hgsubversion/cmdutil.py @ 382:b6047c200708
push: Prevent pushing of edits to .hgtags to svn.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Sat, 30 May 2009 20:55:21 -0500 |
parents | ce64d57172a3 |
children | d71972428fce |
line wrap: on
line diff
--- a/hgsubversion/cmdutil.py +++ b/hgsubversion/cmdutil.py @@ -190,7 +190,9 @@ def commit_from_rev(ui, repo, rev_ctx, h props = {} copies = {} for file in rev_ctx.files(): - if file == '.hgsvnexternals': + if file in ('.hgsvnexternals', + '.hgtags', + ): continue new_data = base_data = '' action = ''