简体   繁体   中英

JGit Java Git Library Unstaging Files

I can't get reset to work properly in JGit. Ie. i can add all files to the index, and i can remove/reset/unstage some of them from the index via the command below but it doesn't work for all files. What is the proper way to unstage files in JGit?

repository.getIndex().remove(getWorkignDirectoryAsFile(), new File(getWorkignDirectoryAsFile(), fileName));
repository.getIndex().write();

Also

You can remove a file from the index using JGit ResetCommand class:

ResetCommand reset = new Git(repository).reset();
reset.setRef(Constants.HEAD);
reset.addPath("foo.txt");
reset.call();

The equivalent of a plain git reset command is

git.reset().setMode(ResetType.MIXED).call();

Where git is an instance of org.eclipse.jgit.api.Git and ResetType refers to org.eclipse.jgit.api.ResetCommand.ResetType

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM