Skip to content

Instantly share code, notes, and snippets.

@ovitente
Last active January 8, 2021 14:36
Show Gist options
  • Save ovitente/47d4835660e91d577bb5b0bf9a2901dc to your computer and use it in GitHub Desktop.
Save ovitente/47d4835660e91d577bb5b0bf9a2901dc to your computer and use it in GitHub Desktop.
create branch from task title
cbr() {
task_id=$1
feature=$2
title="$(tr '[:upper:]' '[:lower:]' <<< $3)"
git checkout -b "$task_id-$feature-${title// /_}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment