Changes between Version 9 and Version 10 of MergerTips


Ignore:
Timestamp:
Mar 23, 2017, 12:56:10 AM (7 years ago)
Author:
Mariusz Felisiak
Comment:

Added full hash of commit to backport check.

Legend:

Unmodified
Added
Removed
Modified
  • MergerTips

    v9 v10  
    1212{{{
    1313#!/bin/bash
     14if [ -z $1 ]; then
     15    echo "Full hash of commit to backport is required."
     16    exit
     17fi
     18
    1419BRANCH_NAME=`git branch | sed -n '/\* stable\//s///p'`
    1520echo $BRANCH_NAME
Back to Top