/
githubmirror
/
Marlin
Обзор
Документация
Войти
/
githubmirror
/
Marlin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
bugfix-2.1.x
buildroot/share/git/firstpush
28 строк
595 B
Scott Lahteine
🧑💻 Fix and improve build_all_examples
23 июл 2022, 05:51
23 июл 2022, 05:51
3b4c759
Код
Авторство
О чём код?
#!/usr/bin/env bash # # firstpush # # Push a branch to 'origin' and open the # commit log to watch Travis CI progress. # [[ $# == 0 ]] || { echo "usage: `basename $0`" 1>&2 ; exit 1; } MFINFO=$(mfinfo) || exit 1 IFS=' ' read -a INFO <<< "$MFINFO" FORK=${INFO[1]} REPO=${INFO[2]} BRANCH=${INFO[5]} git push --set-upstream origin HEAD:$BRANCH OPEN=$( which gnome-open xdg-open open | head -n1 ) URL="https://github.com/$FORK/$REPO/commits/$BRANCH" if [ -z "$OPEN" ]; then echo "Can't find a tool to open the URL:" echo $URL else echo "Viewing commits on $BRANCH..." "$OPEN" "$URL" fi