jgit version 4.6.0 , java 1.8 , windows 10
I have written a java program to push to a git repository where as I want to push specific files at a time instead of pushing all files.
git.add.addFilePattern(".").call();
works fine.
but
git.add.addFilePattern("D:\\myGitRepo\\files\\file1.txt").call();
is not working.
"myGitRepo" folder contains the .git folder.
Summary
The Javadoc of method
AddCommand#addFilepattern(String)
says that: parameterfilepattern
is repository-relative path of file/directory to add (with/
as separator). So you cannot use absolute path and cannot use backslash\
. Indeed, you should:/
to delimit directories on all platforms, even on WindowsDetail
When executing
call()
inAddCommand
, JGit callsPathFilterGroup
to create the file patterns, which callsPathFilter
behind the screen. FromPathFilter
, we can see a more detailed definition about the file pattern: