From 7586609a158bda7f5e7db1eff9993f1ee552e603 Mon Sep 17 00:00:00 2001 From: Ivan Yelizariev Date: Sat, 5 Dec 2015 13:05:08 +0500 Subject: [PATCH] README --- README.md | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b3fed35..9c99690 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,26 @@ Addons Forge # push to your fork git push origin addons-yelizariev-9.0-some-feature - # create pull request at github to addons-dev repo + # create PR to addons-dev repo # then PR is checked and merged # then your update is tested again - # then clean addon is pull-requested to target repo + # then clean addon is pull-requested to target repo (see next section) + +# Final PR to target repo + + # example for addons-yelizariev + cd /path/to/addons-yelizariev + + # add remote if it doesn't exist yet + git remote add addons-dev https://github.com/yelizariev/addons-dev.git + + # fetch remote + git fetch addons-dev + + # create branch + git checkout -b addons-dev/addons-yelizariev-9.0-some-feature + + # push to your fork of target repo + git push origin addons-yelizariev-9.0-some-feature + + # create PR to target repo