I have a 'master' branch with 5 files names
file1.txt
file2.txt
file3.txt
file4.txt
file5.txt
I branched master into 'edit_branch'. I make these changes
edit file1.txt
edit file2.txt
delete file3.txt
delete file4.txt
delete file5.txt
add file6.txt
When I merge 'edit_branch' to master, I want these changes
file1.txt --> updated
file2.txt --> updated
file3.txt --> no change
file4.txt --> no change
file5.txt --> no change
file6.txt --> added
Essentially, the files that are added or modified in the new branch should merge back in the 'master' branch. The deletions mentioned above are necessary.
Any suggestions on how to branch out and set up the repo?
Did you merge from master ?