I and my team started working with git for version control (late I know), and we use bitbucket as a remote repository (because it allows free private repository).
Well, I have some doubts about the workflow.
The programmer is working on the master branch as it is the basis of the project in progress.
I'm working on the "front-end" branch, as I'm working on the styles for the responsive layout.
How should we always work with correct files?
I'm thinking, at the end of the day, to merge the "front-end" branch into the "master" branch, and then pull the master to my local base and the changes will apply to the "front-end" branch until finalize the project.
Is this correct?