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.
Comments
Post a Comment