We have a setupped branches like
- master -> Production site
- develop -> Development stable
- test -> Test site
Also using Git Flow for our project(s). Which really is great to have.
The thing is; when you finish a feature/hotfix, it's being merged to develop and master, which is great. Only I am wondering if it's also possible to include our test branch here too?
Can I just add "test = test" to the git config or is this not going to work either?
Thanks in advance.