I have an issue where I am now trying to merge a branch which isnt including all of the updated files.
In the past I merged this branch (lets call it branch2) into master and pushed the changes to the remote repository, I then realised there was a bunch of issues that branch2 caused so I had to unmerge the branch from master.
I have now fixed the issues in branch2 which caused the problems when I last merged them. When I now try and merge branch2 into master it is only including the files I updated since reverting the merge.
I need it to include all the previous files that this branch had as well as the files I updated in order to make the branch work.
I have done many commits onto the master branch since I reverted the previous merge as well.
I have read since git knows these files were deleted it will no longer include them when I try and merge again, is there a way to get around this?