mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-25 22:01:16 +00:00
cb5c3b074c
* 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
8 lines
137 B
Bash
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}"
|