JackSparrow
JackSparrow

Reputation: 197

How to update my local git branch

I have cloned a repo on my desktop and and I started working on one of the branch. Now I wish to update this branch with the remote branch(get all the recent changes) without committing my changes. How to go about this?

Upvotes: 0

Views: 57

Answers (1)

satchcoder
satchcoder

Reputation: 797

git pull or git pull origin your_branch_name

Upvotes: 1

Related Questions