I have some project on GitHub, there is few branches in there.
- master
- alpha
- beta
for example. Now I create new branch alpha-issue1
. On alpha branch was added some commits by my colleges and I want to copy this changes to my branch. First time I think git merge alpha
would be good idea, but then I read about 'better way' - git pull alpha test-issue1
(if I right). So I don't know what way to chose..