InterviewSolution
| 1. |
Git Pull Remote Branch |
|
Answer» You can pull in any changes that have been made from your forked remote repository to the local repository. As shown in the below image, using the git pull command, all the changes and content can be fetched from the remote repository and can be immediately updated in the local repository to match the content. We can simply pull a remote repository by using the git pull command. The syntax is as follows: git pullThis command is equivalent to git fetch origin headUse the following command to check if there has been any change: git pull <RemoteName> <BranchName>If there is no change, it will show “Already up to date”. Else, it will simply merge those changes in the local repository. |
|