I'm trying to cherry-pick a commit in git, which adds a bunch of files, but also modifies a file that doesn't yet exist in my branch.
There is a conflict where the files to add are all staged, and the file that was changed in the commit but doesn't yet exist in the branch is not staged and and is listed as:
deleted by us: app/changed_file.rb
If I just commit the staged files, will that cause issues when the changed_file.rb
is eventually merged into the branch?