You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* main:
Fix calling JBang command (#14282)
.jbang scripts should not be included inside themselves (#14278)
Fix typos (#14277)
Refactor importDatabase for better readability (#14274)
fix jbang (#14276)
Feat: Add definition links for TeX Files (#14260)
Update preventing module commits (#14273)
Fix JabKitLuancher
Rename packages in jabkit to start with org.jabref.toolkit to avoid split packages between jabkit and jabgui (#14052). (#14271)
Add doi-to-bibtex to examples and JabKit (#14244)
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,11 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
13
13
14
14
- We added "IEEE" as another option for parsing plain text citations. [#14233](github.com/JabRef/jabref/pull/14233)
15
15
- We added automatic date-based groups that create year/month/day subgroups from an entry’s date fields. [#10822](https://github.com/JabRef/jabref/issues/10822)
16
+
- We added `doi-to-bibtex` to `JabKit`. [#14244](https://github.com/JabRef/jabref/pull/14244)
16
17
17
18
### Changed
18
19
20
+
-`JabKit`: `--porcelain` does not output any logs to the console anymore. [#14244](https://github.com/JabRef/jabref/pull/14244)
19
21
- <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>L</kbd> now opens the terminal in the active library directory. [#14130](https://github.com/JabRef/jabref/issues/14130)
Copy file name to clipboardExpand all lines: docs/code-howtos/faq.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,13 @@ git push
163
163
164
164
### Prevention
165
165
166
-
To avoid this, avoid staging using `git add .` from CLI. Preferably use a GUI-based git manager, such as the one built in IntelliJ or open git gui from the command line. Even if you accidentally stage them, don't commit all files, selectively commit the files you touched using the GUI based tool, and push.
166
+
To avoid this, avoid staging using any of these commands:
167
+
168
+
* `git add .`
169
+
* `git add jablib/src/main` (or any path prefix)
170
+
* `git commit -a`
171
+
172
+
Preferably use a GUI-based git manager, such as the one built in IntelliJ or open git gui from the command line. Even if you accidentally stage them, don't commit all files, selectively commit the files you touched using the GUI based tool, and push.
167
173
168
174
## Q: I get `java: package org.jabref.logic.journals does not exist`
0 commit comments