EN | ES | SV

Git Merge Strategi

Bevara historik med merge commits.

Ett sÀkrare, nybörjarvÀnligt tillvÀgagÄngssÀtt som bevarar historik och undviker force pushing.

Arbetsflödet

# feature → develop

git checkout develop
git pull origin develop
git checkout feature
git merge develop --no-commit --no-ff

# resolve conflicts, if any

git commit -am 'merged with develop'
git push origin feature