문제

Is it possible for someone to merge my branch?

Ie if I make a branch and commit it, can someone else that also owns that repository merge my branch with the main one? And if yes, how does this work?

도움이 되었습니까?

해결책

Yes, you can do that. When you work in a group with each person having access to repo. Anyone can perform . Say if you want to merge a branch(fix) to master.

 $ git checkout master
 $ git merge fix

Refer this: Git Branching - Basic Branching and Merging

Also have a look over this related qsn: Best (and safest) way to merge a git branch into master

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top