#How to change the revision of master branch on IntelliJ version control
11 messages · Page 1 of 1 (latest)
Hey, @unborn dagger!
Please remember to /close this post once your question has been answered!
git checkout master
git pull
i dont want to checkout tho
git stash
to stash changes
so i essentially have to checkout to master branch first and then get a pull there and then checkout back to my branch
git fetch <remote> <srcBranch>:<destBranch> you can use this
i will try it
so git fetch origin master:master
Ok yeah that worked thanks dude you are awesome