Showing posts with label Git. Show all posts
Showing posts with label Git. Show all posts

Automatically adds Jira key to commit message

Posted on by Kim

File named prepare-commit-msg in dir ~/projects/ab-tools/install-instructions/githooks


#!/bin/bash
#
# Automatically adds Jira key to commit message
#
# To automatically prepend any commit massage with the branch name, ie. [TEST-xxxx], run:
# ```
# git config --global core.hooksPath ~/projects/ab-tools/install-instructions/githooks/
# ```
#

if [ -z "$BRANCHES_TO_SKIP" ]; then
BRANCHES_TO_SKIP=(master develop)
fi

BRANCH_NAME=$(git symbolic-ref --short HEAD)
BRANCH_NAME="${BRANCH_NAME##*/}"
BRANCH_EXCLUDED=$(printf "%s\n" "${BRANCHES_TO_SKIP[@]}" | grep -c "^$BRANCH_NAME$")
BRANCH_JIRA_KEY=$(echo $BRANCH_NAME | grep -E -o '^([A-Z]+-[0-9]+)')

if ! [[ $BRANCH_EXCLUDED -eq 1 ]] && ! [[ $(cat "$1") == "$BRANCH_JIRA_KEY"* ]] && ! [ -z "$BRANCH_JIRA_KEY" ]; then
echo "[$BRANCH_JIRA_KEY] $(cat "${1}")" > "$1"
fi


Automatically adds Jira key to commit message with githooks

Posted on by Kim

Run:
 git config --global core.hooksPath ~/projects/tools/install-instructions/githooks/

 File: prepare-commit-msg :

#!/bin/bash

if [ -z "$BRANCHES_TO_SKIP" ]; then
  BRANCHES_TO_SKIP=(master develop)
fi

BRANCH_NAME=$(git symbolic-ref --short HEAD)
BRANCH_NAME="${BRANCH_NAME##*/}"
BRANCH_EXCLUDED=$(printf "%s\n" "${BRANCHES_TO_SKIP[@]}" | grep -c "^$BRANCH_NAME$")
BRANCH_JIRA_KEY=$(echo $BRANCH_NAME | grep -E -o '^([A-Z]+-[0-9]+)')

if ! [[ $BRANCH_EXCLUDED -eq 1 ]] && ! [[ $(cat "$1") == "$BRANCH_JIRA_KEY"* ]] && ! [ -z "$BRANCH_JIRA_KEY" ]; then
  echo "[$BRANCH_JIRA_KEY] $(cat "${1}")" > "$1"
fi

remove tracked files/folders from git

Posted on by Kim

Eg. remove target from git. Don't remove target just add it to .gitignore and run:


git rm -r --cached .
git add .
git commit -m ".gitignore fix"

Autostash after rebase

Posted on by Kim

git config --global pull.rebase true
git config --global rebase.autoStash true