1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-25 22:01:16 +00:00
syncthing-android/git_fetch_branch.sh
Catfriend1 cb5c3b074c
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

8 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}"