How To change baseUri: in application.properties add: spring.data.rest.basePath=/api or - in application.yml add:
SLF4J Java import org.slf4j.LoggerFactory; import org.slf4j.Logger; // ... private static final Logger LOG = LoggerFactory.getLogger(HelloWorld.class);
.tar vs .gz vs .zip .tar: archiving (putting files together into 1 folder) in Unix .gz: compression in Unix .tar.gz: archiving + compression in Unix .zip: archiving + compression in Windows Archiving as .tar To compress a directory:
Cherry Pick Cherry pick based on a commit by ignoring spaces HINT: To avoid conflicts, cherry pick with the same order of the original commits (i.e. use Unix tac command to reverse sort the git log) git cherry-pick -X ignore-all-space <commit_hash> e.g.