Tag Archives: branch

Remove remote branch with GIT

Description: Having pushed a wrongly extended branch to origin, or you just don’t need to have a branch both locally and remote. Solution: Locally, deleting the branch was covered in a previous article. However, there are some cases that require … Continue reading

Posted in Version control | Tagged , , , , , | Leave a comment

Basic Git branch operations: create, update, delete

Description: Basic Git version control operations regarding branches. Solution: Create branch: >git checkout -b branches/new_branch Fetch changes: >git fetch Update branch/branches: >git pull >git pull origin branches/new_branch Delete branch: >git branch -D branches/new_branch

Posted in Best practices, Tools, Version control | Tagged , , , , , | 1 Comment