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
c2e43fb1
Commit
c2e43fb1
authored
Oct 18, 2012
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
diff: workdir diffing in a bare repo returns EBAREREPO
parent
502be5ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
6 deletions
+27
-6
src/diff.c
+10
-6
tests-clar/diff/workdir.c
+17
-0
No files found.
src/diff.c
View file @
c2e43fb1
...
...
@@ -933,12 +933,14 @@ int git_diff_workdir_to_index(
git_diff_list
**
diff
)
{
git_iterator
*
a
=
NULL
,
*
b
=
NULL
;
int
error
;
char
*
prefix
=
opts
?
diff_prefix_from_pathspec
(
&
opts
->
pathspec
)
:
NULL
;
assert
(
repo
&&
diff
);
if
(
git_iterator_for_index_range
(
&
a
,
repo
,
prefix
,
prefix
)
<
0
||
git_iterator_for_workdir_range
(
&
b
,
repo
,
prefix
,
prefix
)
<
0
)
if
(
(
error
=
git_iterator_for_index_range
(
&
a
,
repo
,
prefix
,
prefix
)
)
<
0
||
(
error
=
git_iterator_for_workdir_range
(
&
b
,
repo
,
prefix
,
prefix
)
)
<
0
)
goto
on_error
;
git__free
(
prefix
);
...
...
@@ -948,7 +950,7 @@ int git_diff_workdir_to_index(
on_error:
git__free
(
prefix
);
git_iterator_free
(
a
);
return
-
1
;
return
error
;
}
...
...
@@ -959,12 +961,14 @@ int git_diff_workdir_to_tree(
git_diff_list
**
diff
)
{
git_iterator
*
a
=
NULL
,
*
b
=
NULL
;
int
error
;
char
*
prefix
=
opts
?
diff_prefix_from_pathspec
(
&
opts
->
pathspec
)
:
NULL
;
assert
(
repo
&&
old_tree
&&
diff
);
if
(
git_iterator_for_tree_range
(
&
a
,
repo
,
old_tree
,
prefix
,
prefix
)
<
0
||
git_iterator_for_workdir_range
(
&
b
,
repo
,
prefix
,
prefix
)
<
0
)
if
(
(
error
=
git_iterator_for_tree_range
(
&
a
,
repo
,
old_tree
,
prefix
,
prefix
)
)
<
0
||
(
error
=
git_iterator_for_workdir_range
(
&
b
,
repo
,
prefix
,
prefix
)
)
<
0
)
goto
on_error
;
git__free
(
prefix
);
...
...
@@ -974,7 +978,7 @@ int git_diff_workdir_to_tree(
on_error:
git__free
(
prefix
);
git_iterator_free
(
a
);
return
-
1
;
return
error
;
}
...
...
tests-clar/diff/workdir.c
View file @
c2e43fb1
#include "clar_libgit2.h"
#include "diff_helpers.h"
#include "repository.h"
static
git_repository
*
g_repo
=
NULL
;
...
...
@@ -818,3 +819,19 @@ void test_diff_workdir__submodules(void)
git_diff_list_free
(
diff
);
git_tree_free
(
a
);
}
void
test_diff_workdir__cannot_diff_against_a_bare_repository
(
void
)
{
git_diff_options
opts
=
{
0
};
git_diff_list
*
diff
=
NULL
;
git_tree
*
tree
;
g_repo
=
cl_git_sandbox_init
(
"testrepo.git"
);
cl_assert_equal_i
(
GIT_EBAREREPO
,
git_diff_workdir_to_index
(
g_repo
,
&
opts
,
&
diff
));
cl_git_pass
(
git_repository_head_tree
(
&
tree
,
g_repo
));
cl_assert_equal_i
(
GIT_EBAREREPO
,
git_diff_workdir_to_tree
(
g_repo
,
&
opts
,
tree
,
&
diff
));
git_tree_free
(
tree
);
}
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