I have the following folder structure for my project
src/
test_unit/
package1/
test_unit/
package2/
test_unit
output/
In my devel branch, all folders should be versioned, but the master / stable branch should ignore and not combine test_unit / and output / folder.
How can i achieve this? With .gitignore, it will not work because .gitignore will be merged between branches.
source
share