Compare commits
5 Commits
4e58b07666
...
pedro-cv
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
575c05e65d | ||
|
|
052bbeed39 | ||
|
|
3df51b7340 | ||
|
|
141fb5e38c | ||
|
|
bfe215b8a1 |
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -16,5 +16,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"latex-workshop.latex.recipe.default": "Smart LaTeX Build",
|
"latex-workshop.latex.recipe.default": "Smart LaTeX Build",
|
||||||
"latex-workshop.formatting.latex": "latexindent"
|
"latex-workshop.formatting.latex": "latexindent",
|
||||||
|
"latex-workshop.latex.autoBuild.run": "onSave"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,5 +13,11 @@ Go to https://tug.org/texlive/ and install the correct TeX for your operating sy
|
|||||||
|
|
||||||
If you are using VS Code, I highly recommend to install [LaTeX Workshop](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop).
|
If you are using VS Code, I highly recommend to install [LaTeX Workshop](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop).
|
||||||
|
|
||||||
|
## Other CV variants
|
||||||
|
|
||||||
|
- [Article](../article/)
|
||||||
|
- [Awesome-CV](../awesome-cv/)
|
||||||
|
- [ModernCV](../moderncv) (**main CV variant**)
|
||||||
|
|
||||||
##
|
##
|
||||||
Developed with ♥ by Pedro Pessoa Cabral
|
Developed with ♥ by Pedro Pessoa Cabral
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ if ! git rev-parse --verify --quiet "${COMMIT}^{commit}" >/dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
COMMIT="$(git rev-parse --short "$COMMIT")"
|
COMMIT="$(git rev-parse --short "$COMMIT")"
|
||||||
|
COMMIT_MSG="$(git log -1 --pretty=format:%s "$COMMIT")"
|
||||||
PARENT_COUNT="$(git rev-list --parents -n 1 "$COMMIT" | wc -w | tr -d ' ')"
|
PARENT_COUNT="$(git rev-list --parents -n 1 "$COMMIT" | wc -w | tr -d ' ')"
|
||||||
|
|
||||||
if [[ "$PARENT_COUNT" -gt 2 ]]; then
|
if [[ "$PARENT_COUNT" -gt 2 ]]; then
|
||||||
@@ -59,7 +60,7 @@ handle_error() {
|
|||||||
|
|
||||||
trap handle_error ERR
|
trap handle_error ERR
|
||||||
|
|
||||||
echo -e "${BLUE}Replicating commit ${COMMIT} from '${START_BRANCH}' to local branches.${RESET}"
|
echo -e "${BLUE}Propagating commit ${BOLD}'${COMMIT}: ${COMMIT_MSG}'${RESET}${BLUE} from '${START_BRANCH}' to local branches.${RESET}"
|
||||||
|
|
||||||
while IFS= read -r BRANCH; do
|
while IFS= read -r BRANCH; do
|
||||||
if [[ "$BRANCH" == "$START_BRANCH" ]]; then
|
if [[ "$BRANCH" == "$START_BRANCH" ]]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user