Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2015-07-01 17:40:11 +0300
committerEdward Thomson <ethomson@edwardthomson.com>2015-07-01 17:40:11 +0300
commit63924435a103d34315ad9a4851d84b2b052aca38 (patch)
tree7bbdaab9c5f7004164b69da795805dfa8b6024c0 /CHANGELOG.md
parent14888070b941824b7f6369c60d7600594d215577 (diff)
filters: custom filters with wildcard attributes
Allow custom filters with wildcard attributes, so that clients can support some random `filter=foo` in a .gitattributes and look up the corresponding smudge/clean commands in the configuration file.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 852000bba..735f1fe27 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -75,6 +75,10 @@ support for HTTPS connections insead of OpenSSL.
* If libcurl is installed, we will use it to connect to HTTP(S)
servers.
+* Custom filters can now be registered with wildcard attributes, for
+ example `filter=*`. Consumers should examine the attributes parameter
+ of the `check` function for details.
+
### API additions
* The `git_merge_options` gained a `file_flags` member.