Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
9a99ca7b
Commit
9a99ca7b
authored
Jul 10, 2015
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wildcard filters: move CHANGELOG message to 0.23+1
parent
bae467ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
CHANGELOG.md
+4
-4
tests/filter/wildcard.c
+1
-2
No files found.
CHANGELOG.md
View file @
9a99ca7b
...
...
@@ -3,6 +3,10 @@ v0.23 + 1
### Changes or improvements
*
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
### API removals
...
...
@@ -88,10 +92,6 @@ v0.23
*
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.
...
...
tests/filter/wildcard.c
View file @
9a99ca7b
...
...
@@ -98,7 +98,6 @@ static void wildcard_filter_cleanup(git_filter *self, void *payload)
{
GIT_UNUSED
(
self
);
git__free
(
payload
);
return
0
;
}
static
void
wildcard_filter_free
(
git_filter
*
f
)
...
...
@@ -106,7 +105,7 @@ static void wildcard_filter_free(git_filter *f)
git__free
(
f
);
}
static
git_filter
*
create_wildcard_filter
()
static
git_filter
*
create_wildcard_filter
(
void
)
{
git_filter
*
filter
=
git__calloc
(
1
,
sizeof
(
git_filter
));
cl_assert
(
filter
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment