You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ivan Yelizariev
3125d2cf9a
|
9 years ago | |
---|---|---|
README.md | 9 years ago |
README.md
addons-dev
Addons Forge
Initialization
-
Fork this repo
-
Clone to your machine:
git clone git@github.com:USERNAME/addons-dev.git
-
Add remotes
cd addons-dev git remote add addons-yelizariev https://github.com/yelizariev/addons-yelizariev.git git remote add pos-addons https://github.com/yelizariev/pos-addons.git git remote add mail-addons https://github.com/yelizariev/mail-addons.git git remote add access-addons https://github.com/yelizariev/access-addons.git git remote add website-addons https://github.com/yelizariev/website-addons.git git remote add l10n-addons https://github.com/yelizariev/l10n-addons.git
Development
# specify target repo and branch:
export REPO=addons-yelizariev BRANCH=9.0
# fetch remote
git fetch ${REPO}
# create new branch
git checkout -b ${REPO}-${BRANCH}-some-feature
# develop addons, create commits
# ...
# push to your fork
git push origin addons-yelizariev-9.0-some-feature
# create pull request at github 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