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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -