Saved Bookmarks
| 1. |
What Is A Git Pull? |
|
Answer» Git pull is shorthand for Git fetch, followed by Git merge FETCH_HEAD. More specifically, Git pull runs Git fetch with the given parameters and calls Git merge to merge the RETRIEVED branch HEADS into the current branch. Should be the name of a REMOTE repository as FORWARDED to Git-fetch. Git pull is shorthand for Git fetch, followed by Git merge FETCH_HEAD. More specifically, Git pull runs Git fetch with the given parameters and calls Git merge to merge the retrieved branch heads into the current branch. Should be the name of a remote repository as forwarded to Git-fetch. |
|