Commit 45ddb58634820fece9aea6d758316f0939bf9da6

Edward Thomson 2019-07-21T12:14:50

filter: document GIT_FILTER_ALLOW_UNSAFE

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/git2/filter.h b/include/git2/filter.h
index 436a0f3..b81b25e 100644
--- a/include/git2/filter.h
+++ b/include/git2/filter.h
@@ -40,6 +40,8 @@ typedef enum {
  */
 typedef enum {
 	GIT_FILTER_DEFAULT = 0u,
+
+	/** Don't error for `safecrlf` violations, allow them to continue. */
 	GIT_FILTER_ALLOW_UNSAFE = (1u << 0),
 } git_filter_flag_t;