2018-03-17 18:26:18 +05:30
|
|
|
---
|
|
|
|
comments: false
|
|
|
|
---
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
# Agile and Git
|
|
|
|
|
|
|
|
## Agile
|
|
|
|
|
|
|
|
Lean software development methods focused on collaboration and interaction
|
|
|
|
with fast and smaller deployment cycles.
|
|
|
|
|
|
|
|
## Where Git comes in
|
|
|
|
|
|
|
|
Git is an excellent tool for an Agile team considering that it allows
|
|
|
|
decentralized and simultaneous development.
|
|
|
|
|
|
|
|
### Branching And Workflows
|
|
|
|
|
|
|
|
Branching in an Agile environment usually happens around user stories with one
|
|
|
|
or more developers working on it.
|
|
|
|
|
|
|
|
If more than one developer then another branch for each developer is also used
|
2020-05-24 23:13:21 +05:30
|
|
|
with their initials, and US ID.
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
After its tested merge into master and remove the branch.
|
|
|
|
|
|
|
|
## What about GitLab
|
2019-09-04 21:01:54 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
Tools like GitLab enhance collaboration by adding dialog around code mainly
|
|
|
|
through issues and merge requests.
|