mirror of
https://github.com/php/doc-ru.git
synced 2025-07-24 09:59:46 +00:00
8 lines
175 B
Bash
8 lines
175 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
curl -L "https://github.com/php/doc-ru/pull/$1.patch" | git am
|
|
git commit --amend -m "$(git log --format=%B -n 1)" -m "Closes GH-$1"
|
|
git push origin master
|