Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 395 Bytes

pull-changes-from-the-master-or-other-branch.md

File metadata and controls

12 lines (8 loc) · 395 Bytes

Pull changes from the master or other branch

Checkout the branch on to which you want the changes.

git checkout branch_name

Pull and Merge changes from master(replace with other branch name)

git merge origin/master

Push to save changes

git push origin branch_name

Learned from Stackoverflow