I have two branches master
and docs
. The second one has files that I never want in the master
branch, however when I perform an update in master
I would like to update the docs
branch without altering its extra files.
I tried to use merge
, however, it fails due to the extra files in the docs
branch.
Can you help me with this?
Thank you.