AutoCompletionReset
Closes https://github.com/JabRef/jabref/issues/14403
Addressed in this PR:
- Enable resetting of AutoCompletePreferences https://github.com/JabRef/jabref/issues/14400
Steps to test
Mandatory checks
- [x] I own the copyright of the code submitted and I license it under the MIT license
- [x] I manually tested my changes in running JabRef (always required)
- [/] I added JUnit tests for changes (if applicable)
- [/] I added screenshots in the PR description (if change is visible to the user)
- [/] I described the change in
CHANGELOG.mdin a way that is understandable for the average user (if change is visible to the user) - [/] I checked the user documentation: Is the information available and up to date? If not, I created an issue at https://github.com/JabRef/user-documentation/issues or, even better, I submitted a pull request updating file(s) in https://github.com/JabRef/user-documentation/tree/main/en.
Hey @DawydowGerman! 👋
Thank you for contributing to JabRef!
We have automated checks in place, based on which you will soon get feedback if any of them are failing.
After all automated checks pass, a maintainer will also review your contribution. Once that happens, you can go through their comments in the "Files changed" tab and act on them, or reply to the conversation if you have further inputs.
Please re-check our AI Usage Policy to ensure that your pull request is in line with it. It also contains links to our contribution guide in case of any other doubts related to our contribution workflow.
@DawydowGerman it seems you rebased instead of merging..
To start with a clean commit we have following advice
Rebase everything as one commit on main
- Precondition:
JabRef/jabrefis configured as upstream. - Fetch recent commits and prune non-existing branches:
git fetch upstream --prune - Merge recent commits:
git merge upstream/main - If there are conflicts, resolve them
- Reset index to upstream/main:
git reset upstream/main - Review the changes and create a new commit using git gui:
git gui - Do a force push:
git push -f origin
@koppor, thank you for advice. I'll try to fix the issue.
Your pull request conflicts with the target branch.
Please merge with your code. For a step-by-step guide to resolve merge conflicts, see https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line.