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
6405ce29
Commit
6405ce29
authored
Nov 06, 2020
by
Reginald McLean
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
worktree: Added worktree_dir check
Fixes #5280
parent
848c7793
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
src/worktree.c
+8
-1
No files found.
src/worktree.c
View file @
6405ce29
...
...
@@ -259,7 +259,14 @@ int git_worktree_validate(const git_worktree *wt)
wt
->
commondir_path
);
return
GIT_ERROR
;
}
if
(
!
git_path_exists
(
wt
->
worktree_path
))
{
git_error_set
(
GIT_ERROR_WORKTREE
,
"worktree directory ('%s') does not exist "
,
wt
->
worktree_path
);
return
GIT_ERROR
;
}
return
0
;
}
...
...
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