syncstuff/git_fetch_branch.sh
Catfriend1 bc1b8bf388 Import translations / Force lint checks before build (#132)
* Update app desc en-GB

* Add git_fetch_branch.sh

* Abort on lint error

* Run lint when building the app

* Update app full description

* Imported translation values-sv
2018-11-29 22:16:51 +01:00

9 lines
137 B
Bash

#!/bin/sh
#
# Syntax:
# git_fetch_branch.sh [BRANCH_NAME_TO_FETCH]
#
git fetch --all
git fetch origin "${1}":"${1}"
git checkout "${1}"