Git branching model implementation -
i'm trying understand how can impelement branching model described here.
- am right infer on origin there 2 branches - master , develop, whereas additional branches releases, features , hotfixes created locally? or of these should created in origin?
- could please clarify phrase:
each developer pulls , pushes origin. besides centralized push-pull relationships, each developer may pull changes other peers form sub teams...technically, means nothing more alice has defined git remote, named bob, pointing bob’s repository, , vice versa
i'm particularly confused
alice has defined git remote, named bob, pointing bob’s repository
where did define it? on server or locally?
all of them should created in origin, time colleague might want specific branch.
if run git remote command shows remote repositories. it's origin there. may want define repository of other person remote repository. more details remote repositories here
the phrase
alice has defined git remote, named bob, pointing bob’s repository
means, if alice run git remote see 2 repositories: origin , bob. it's because has added bob repository remote repository. can share commits within specific repository.
Comments
Post a Comment