notes/util/vcs/git/git-pull.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

13 строки
296 B
Plaintext

pull = fetch + merge
also shows the latest branches available
git fetch
git log ... --all
to include all items even not part of our current branch
git merge <other-branch-name>
merthe the other branch to the current one
git pull --rebase=merge
better than a plain --rebase ???