diff --git a/README b/README index f266eca09..ff148c782 100644 --- a/README +++ b/README @@ -1,11 +1,15 @@ digikam.org changes workflow : A git "dev" branch was create to check changes online with https://staging.digikam.org before to push new revision offcially in https://www.digikam.org To process with git, follow step below : 1 - from up to date git master, create a new local "dev" branch : git checkout -b dev remotes/origin/dev + 2 - optionaly, synchronize this branch with master, in case of : git merge master; git push + 3 - made changes in dev branch and check the result with staging.digikam.org. This url is updated one minute after a commit to dev branch. + 4 - when all is fine backport your changes done in dev to master : git checkout master; git merge dev; git push. + 5 - now all your last changes must be visible to www.digikam.org few minutes later.