Branching Strategy
- on a broader note we have following branching strategies
- Git Flow
- GitHub Flow
- Gitlab Flow
- Trunk
- Our Branching Strategies
- main branch: This reflects the production state
- develop branch: This reflects the latest delivered changes after merging pull requests
- release branches: Will reflect the changes done the developers during last day
- feature/defect branches: created from develop branch and pull request will be created to merge changes into develop branch
- Watch classroom video for steps
Fifth area of git
- Refer Here for git stash reference
- Refer Here for docs
Git clone types
- Git has three major types of clones
- normal => working tree + local repo + remote connection
- bare clone => local repo + remote connection
