EMERGING TRENDS IN SOFTWARE ENGINEERING
MISCELLANEOUS
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
checkout
|
|
commit
|
|
export
|
|
pull
|
Detailed explanation-1: -git pull. The git pull command is used to fetch and merge changes from the remote repository to the local repository.
Detailed explanation-2: -Pull. Pull operation copies the changes from a remote repository instance to a local one. The pull operation is used for synchronization between two repository instances.
Detailed explanation-3: -The git pull command is used to get updates from the remote repo. This command is a combination of git fetch and git merge which means that, when we use git pull, it gets the updates from remote repository (git fetch) and immediately applies the latest changes in your local (git merge).
Detailed explanation-4: -The git push command is used to upload local repository content to a remote repository. Pushing is how you transfer commits from your local repository to a remote repo.