We mainly use the coding conventions from F# Component Design Guidelines.
The formatting style should be consistent as much as possible throughout the code base.
We mainly use the coding conventions from F# Component Design Guidelines.
The formatting style should be consistent as much as possible throughout the code base.
Get the latest updated master branch
Branch from it
> git checkout -b feature/my-new-featureWe most exclusively use the rebase feature (not the merge feature):
> git fetch origin
> git checkout master
> git pull> git checkout feature/my-new-feature> git rebase -i masterFollow the same instructions as in the scenario 2.
Force push the local branch to the remote branch
> git push origin -fBefore starting to work, we will meet to talk and plan our strategy (modules to work on, architectural changes...), in a way that we don't work on the same files & our changes don't conflict together.
The following concerns should be taken into account when costing features: