branche and an Dev branche the main difference is the Dev is working without database, But when I develope in the Dev on my Local mashine how do I transfer this changes to master ? Any useful links/tips?
git merge?
read this https://nvie.com/posts/a-successful-git-branching-model/ you have to understand branch modeling. why do you have dev branch in the first place? can you have more branches? and why? this article tells you that
Assuming you are on dev branch. Commit all the changes that you want to merge in master branch. Switch to master branch using git checkout master Merge all commits from dev into master using git merge dev
Обсуждают сегодня