Open mariacuria opened 1 week ago
Git Branching - Basic Branching and Merging
git status
git checkout -b hotfix
git add *
git commit -a -m 'Fix something'
git push
git checkout master
git merge hotfix
git branch -d hotfix
Git Branching - Basic Branching and Merging
git status
git checkout -b hotfix
git add *
git commit -a -m 'Fix something'
git push
git checkout master
git merge hotfix
git branch -d hotfix