I am trying to make a cherry-pick commit in git that adds a bunch of files, but also modifies a file that does not exist in my branch yet.
There is a conflict in which all the files that need to be added, everything, and the file that was changed in the commit, but does not yet exist in the branch, is not set and is indicated as:
deleted by us: app/changed_file.rb
If I just commit the delivered files, it will cause problems when changed_file.rb will eventually be merged with the branch?
source share