rogerdudler / git-guide

git - the simple guide
http://rogerdudler.github.com/git-guide
2.19k stars 527 forks source link

Missing merge command #152

Open mjavadhpour opened 7 years ago

mjavadhpour commented 7 years ago

create a new branch named "feature_x" and switch to it using git checkout -b feature_x switch back to master git checkout master and delete the branch again git branch -d feature_x a branch is not available to others unless you push the branch to your remote repository

I think this section also must have merge command.