-1

I am participating in a project with many branches and when I work on my branch, another branch (for example master) gets updated on remote. I indeed would like to pull changes to it without changing my current branch (without checking out). Is this possible and if yes, how?

0

2 Answers 2

1

Try git fetch <remote> <source>:<destination> .

This worked for me git-forward-merge <source> <destination> But it doesn't work for merges that require conflict resolution.

Sign up to request clarification or add additional context in comments.

Comments

1

https://git-scm.com/docs/git-fetch:

git fetch origin master:master 

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.