This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"appTitle": [ | |
{ | |
"key": "pl", | |
"value": "Potrzebuję" | |
}, | |
{ | |
"key": "ua", | |
"value": "Потреба" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": [ | |
{ | |
"need": [ | |
{ | |
"key": "pl", | |
"value": "Nocleg" | |
}, | |
{ | |
"key": "ua", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Automatically adds branch name and branch description to every commit message, | |
# omitting adding branch name if already exists in commit message. | |
# | |
NAME=$(git branch | grep '*' | sed 's/* .*\///') | |
DESCRIPTION=$(git config branch."$NAME".description) | |
if [[ ! $(cat "$1") =~ $NAME ]]; | |
then |