How to handle changes on files on git source control before Pull last changes?

I’m beginner on git source control I have web application done by angular 7

exist on git source control

AND I need to pull last changes to be same changes and files on local and server same .

so I will write

E:\PartDetails> git pull origin master 

but I notice I have 7 files changes on angular files so

What I do on files changes before Pull last changes to web application files from server ?

Exactly I need to hide changes done on locally to accept override files when

make pull to last version

What command I will write it to allow or remove changes locally .

How to handle files changed Before Pull last changes

Hi @ahmedsaazizba, you can stash your changes before pulling, and then apply / pop the stash:

git stash
git pull
git stash pop

PS: I’ve moved your question to “General Web Dev” as it’s not related to JS per se, hope that’s okay.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.