mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
9 lines
200 B
Bash
Executable File
9 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
BRANCH1=`git log -n 1 --pretty=%d HEAD | awk '{print $2}' | sed 's/origin\///' | sed 's/)//'`
|
|
if [ "$BRANCH1" = '->' ]
|
|
then
|
|
BRANCH1=`git rev-parse --abbrev-ref HEAD`
|
|
fi
|
|
|
|
echo \"$BRANCH1\"
|