I need to have one file/directory that will be sync for all the developers in all the branches before the developer is starting to work in any branch,
on moving to working branch before starting work (create branch, checkout/switch branch etc..)
- switch to develop (this is the main branch of development, no developer should work on this branch)
- update uniqueness files with user and working branch information
- commit changes to develop
- push commits of develop to remote
- switch to working branch
- checkout uniqueness files from develop
- commit uniqueness files to working branch
- start working on branch
What would be the best way of doing that?