-
Notifications
You must be signed in to change notification settings - Fork 51
Common Workflows
Alexander Graul edited this page Oct 17, 2022
·
4 revisions
-
git rebase -i $COMMIT_SHA
let's you modify the Git log interactively.--autostash
takes care of saving & restoring your current working directory state before respectively after rebasing. Seeman(1) git-rebase
for more details. -
git cherry-pick -x $COMMIT_SHA
creates a new commit in the currently active branch with the contents of the commit specified by$COMMIT_SHA
.-x
puts a reference to the original commit into the commit message of the new commit. Seeman(1) git-cherry-pick
for more details. -
git bisect
helps pinpoint a commit that introduces breaking changes. Seeman(1) git-bisect
for more details.
This bash script is useful to list all packages in the bundle sub-project, look at the osc rdiff
for each of them in the respective subproject of the two defined parent projects and for osc copypac
or prjconf
alignments.
- J2Live Jinja2 Parser has a "Salt" rendering mode. This mode understands Salt's Jinja2 extensions, such as custom filters.
-
salt <target> state.show_sls
shows the sls after it was rendered with Jinja2 and parsed by Salt's state compiler.