I'm using Mercurial on Windows and I would like to contribute a couple
of patches for 64-bit builds and the Intel compiler. The attached
patches should help hg-git users like me to submit subsequent patches
without accidentially modifying any line endings or adding spurious files.
Thank you all for sharing and contributing to zeromq, by the way. It's a
really awesome project.
Stuart
# HG changeset patch
# User swebster <[email protected]>
# Date 1321580253 -3600
# Node ID 8898889b0d74b1189ceaa87f206bb602cf17c37c
# Parent 5fb25881c5c601ba437e21a6b020d6d31787a4ff
Added line-ending conversion rules for hg-git users
Mercurial does not have built-in support for converting line-endings. This is a
settings file for hg eol (http://mercurial.selenic.com/wiki/EolExtension), an
extension that replicates the behaviour of git with core.autocrlf=true.
Signed-off-by: Stuart Webster <[email protected]>
diff --git a/.hgeol b/.hgeol
new file mode 100644
--- /dev/null
+++ b/.hgeol
@@ -0,0 +1,2 @@
+[patterns]
+** = native
# HG changeset patch
# User swebster <[email protected]>
# Date 1321580390 -3600
# Node ID 1923141f78285e19c915c3f0632a287094c935ad
# Parent 8898889b0d74b1189ceaa87f206bb602cf17c37c
Enabled use of .gitignore by hg-git users
Mercurial uses Python regex syntax by default in its .hgignore files. Adding
this line to .gitignore overrides that setting, so hg-git users can just create
a hardlink to it (e.g "mklink /H .hgignore .gitignore" on Windows) to use it.
Signed-off-by: Stuart Webster <[email protected]>
diff --git a/.gitignore b/.gitignore
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+syntax: glob # for hg-git users
Makefile
Makefile.in
configure
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev