Category Archives: git

common git problems

Delete the remote branch git push -d origin <branch_name> Delete the local branch git branch -D <branch_name> Merge master into feature branch git checkout master git pull git checkout feature git merge master Checkout from a specific commit Use git checkout … Continue reading

Posted in git | Comments Off on common git problems