How to make sure that before checking in files in git there are no conflicts?
Before committing any files if we do:
git pull origin master
then do
git commit
git push origin master
Is this the case that a user will not get any conflict at all in any case? Please let me know.
When you do:
The git will let you know if there are any conflicts and won’t actually push until that is fixed.