I guess this is common in software development for instance with paid/free versions, however I am having this need while building my CV on latex. Let me illustrate first.
I have 3 types of CVs: projects, management and technical, and I maintain them in at least 3 languages: english, portuguese and spanish.
I am used to git-flow and I really like it, however I have only used it using just one develop branch. In this case I would like to have 9 develop branches: en-proj, en-mgmt, en-tech, pt-proj, pt-mgmt, pt-tech, es-proj, es-mgmt and es-tech.
Each feature would be started from a specific branch and finished to that branch instead from/to develop. Furthermore, each CV submission would have their own details, so ideally each of these "develop" branches commits would be a submission version. I guess there is no need to have a master branch.
I read these resources 1 and 2 but I am looking forward to do this entirely using git-flow if possible.
Is there a way I can use git-flow as described? if so, how? From the links provided it is possible to create a feature from a branch using git instead of git-flow, but I guess it would be the same for finishing a feature and therefore git-flow would not be very useful, I would be ending using git alone.
If you could please answer with concrete examples of command-line snippets it would be very helpful!
Thank you very much!