I have a question about the management of branches in GIT. I'm following GitFlow. I know its operation in terms of branch structure, no problem there, but I don't know how to manage the synchronization with remote correctly. For example:
- I make a branch hotfix-error_XXXX from master
If it's a little change and I will solve it immediately, should I synchronize this branch with remote or is't not necessary? that is, do I solve the problem and do merge in local master and finally delete the hotfix branch without going through remote?
Another question is, should these remote branches be deleted in addition to the local branches? That is, those that have to do with hotfix or features.
Thank you!