Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
set -e
pivotal_ticket_id=$1
function commits_from_development() {
git checkout development > /dev/null 2>&1
git log --reverse --oneline --no-abbrev-commit --grep $1 | cut -d ' ' -f 1
}
@simon2k
simon2k / git_verification.md
Last active September 3, 2018 21:01 — forked from stevo/git_verification.md
GIT Skills Verification

Be prepared to show following GIT CLI skills in action. All skills are required to get :

Working with GIT using CLI 🔹

  • can checkout new branch
  • can switch between branches
  • can display and understand git log
  • can add changes (progressively, all at once, selected files)
    • can split changesets when adding changes progressively
  • can edit changesets when adding changes progressively