Posts by Sabucodonozorr • 31 points
4 posts
-
3
votes2
answers12902
viewsA: What’s the difference between git pull and git pull --rebase
According to the official documentation, IF local branch is configured to track (track) changes to the remote branch And the remote branch has received some rebase since the last fetch that you have…
gitanswered Sabucodonozorr 31 -
-2
votes3
answers582
viewsA: Maven Module vs Java 9 Module
This post brings an important consideration to your question, and in my view also answers it: "Maven modules are a way to organize your project into several subprojects (modules). With Maven, you…
-
0
votes1
answer215
viewsA: How to configure log4j in a java project that does not have the src folder?
the file is loaded by log4j as a resource, so it is searched in the subdirectories that are in the classpath. In Eclipse and build tools like Maven and Gradle, the source folder (usually src) is…
-
0
votes2
answers1262
viewsA: How to run mysql database using shell script if the base name has "-"
Whenever you need to use special characters such as the contents of command line parameters (bash), use quotes (single or double) around the entire value of the parameter. You can also insert them.…