Answers for "git ignore local changes and pull"

1

git ignore local changes and pull

git reset --hard
git pull
Posted by: Guest on April-23-2021
1

keep local changes and pull

git stash
git pull
git stash pop
Posted by: Guest on December-11-2020
2

how to pull the changes from git without staging local changes

git stash save
git pull
git stash pop
Posted by: Guest on May-13-2020
1

git remove my local changes and pull from master

git reset --hard <your commit hash key>
Posted by: Guest on July-10-2020

Code answers related to "git ignore local changes and pull"

Browse Popular Code Answers by Language