GIT
What is the difference between git pull and git fetch?
- Git fetch command tell our local gate to Vihar, the latest meta data information from original repository.(There is no file transferring. It is just like checking to see if there are any changes available.)
- Git pull is used To download latest changes from central repository To local repository.(File transfer happens here).
I have same history and want to commit in four branches. What should I use?
- Git worktree helps to create parallel repository so that we can work on them in parallel.
Comments
Post a Comment