#pull

Features Of Git Fetch And Git Pull command

Reading Time: 3 minutes Git Fetch command Git fetch command works on the local repository where it only fetches the data from the remote repository to have a look what all the changes has been done by the developers or what all new commits are made by them. So that it updates the developer to work. But, it doesn’t makes a copy of the work instead it allows the Continue Reading

Git first cover

Git Rebase vs Pull

Reading Time: 4 minutes We face situations daily where we have to choose between pull and rebase to update the local code with the origin. We will see the difference using an example. Let’s say we have a master branch and it has only one file Demo.txt. We add m1 to it and commit it. Later add m2 and commit it and finally add m3 and commit it. master Continue Reading