There is the following problem (may be because I'm new in Git, sorry in advance for dummy questions) with workflow: - git init - one commit with README.md in "master" branch - git checkout -b "developing" - some changes with commits in "developing" branch without touching "master" branch
Now I want to merge "developing" branch with "master" one, because "developing" stores some actions of developers and "master" stores code for production, but when I execute "git merge master" command in "developing" branch I'll get "anything up-to-date" message and I can't add "developing" branch to "master" one! This is not really situation, it's only my experiments with Git (my team works with the similar way but not the same). Please, give me advice, how can I do it right? Thanks!