top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Pull Request in GIT?

+1 vote
360 views
What is Pull Request in GIT?
posted Apr 13, 2018 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

In order to sync your local repository and remote repository, git pull command is used. Pull command in git consists of fetch and merge operation which are applied to your repository to make it sync with remote one.

answer Apr 16, 2018 by Harshita
0 votes

Pull requests let you tell others about changes you've pushed to a GitHub repository. Once a pull request is sent, interested parties can review the set of changes, discuss potential modifications, and even push follow-up commits if necessary.

answer Apr 25, 2018 by Aarati Mahajan
Similar Questions
+1 vote

Is there a place record when I run "git pull" the last time.

+5 votes

I would like to run git rev-list with --no-merges to exclude the pull merge commits, but to still be able to see "regular" branch merges and their changes. Is there a way to do this or there is no way to tell between them ?

...