In the book "Git: Version Control for Everyone. Beginner's Guide" on page 69 there is a suggestion: "As an alternative to git pull
, we can also use git fetch
followed by git merge @{u}
".
What does @{u}
mean here?
A search in Google for git merge @{u}
provides a link to this page https://mislav.net/2013/02/merge-vs-rebase/ where @{u}
can also be found.