branches, but I've seen that the workflow is:
# do we have new change on remote?
git fetch origin dev
# get them if there's changes
git pull origin dev
# add more commits to the history
...
...
...
# finally push your new stare
# of the repo
git push origin dev
git pull == (git fetch && git merge)
What about push?
push is just push
Обсуждают сегодня