I am working on project where 5-6 members also work.Usually start of the sprint every body create a local branch in his/her machine and start with his/her story.
Every day There will be push to master and finally story gets merged after review.
Currently I am re basing my changes only after competing my story.
so I am doing following
git add .
git commit
go checkout master.
get pull
get checkout localbranch
get rebase
This process of rebasing at the end results in lot of conflict at once. I wanted to be updated with master daily.Please suggest me how to do that.