git - Is it correct to say that «pull» is kinda «merge»? -


is correct «push» kinda «merge»? difference, see: «merge» operation on local branches, «push» operation between local , remote branch.

is understanding right or not?

git pull alias git fetch + git merge.

git fetch updates local repository changes (delta) are downloaded remote repository , stored inside local .git folder.

once fetch on , have data locally git merge occur , merges changes 1 remote.


enter image description here


enter image description here


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -