I am new to git and I am just learning..
I setup a github project to test and I been working local to..
I hear that you should never work out of the master and it should be production ready. so I did the following
I did a
git branch myfix
git checkout
made my changes and did a
git commit -a
but how do I tell it to move my code into the master branch?
Well
should actually be
If you did in fact do this then you can “move” the code into the master branch like so