notes/devops/vcs/git/git-pull.txt
Ihar Hancharenka b9c36c1e5a m
2024-02-04 19:40:05 +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 ???