зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 21:26:09 +02:00
13 строки
296 B
Plaintext
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 ???
|