Skip to content

Instantly share code, notes, and snippets.

View andreas-venturini's full-sized avatar

Andreas Venturini andreas-venturini

View GitHub Profile
1) Create a branch with the tag
git branch {tagname}-branch {tagname}
git checkout {tagname}-branch
2) Include the fix manually if it's just a change ....
git add .
git ci -m "Fix included"
or cherry-pick the commit, whatever is easier
git cherry-pick {num_commit}

Keybase proof

I hereby claim:

  • I am andreas-venturini on github.
  • I am aventurini (https://keybase.io/aventurini) on keybase.
  • I have a public key ASAJMrdfVZSqO9-sVsiKRnlADlZ18RQes5CQdvbWeZ6aowo

To claim this, I am signing this object:

@andreas-venturini
andreas-venturini / video_transcoding
Last active December 22, 2016 13:58
ffmpeg_video_transcoding
#!/usr/bin/:/usr/local/bin/
# set -u: only allow referencing of variables if they were previously defined
# set -o pipefail: don't mask pipeline errors
set -uo pipefail
# case-insensitive regex matching
setopt nocasematch
video_input_dir=""