I recently started using Stacked Git to manage my patchsets, and it's
been a great tool. However, I was a bit confused for a while on how
to resolve conflicts when a merge fails. Here's a patch to hopefully
clarify that message a little.
Signed-off-by: Jason Green <jason@transgaming.com>
Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
def check_conflicts():
if git.get_conflicts():
def check_conflicts():
if git.get_conflicts():
- raise CmdException('Unsolved conflicts. Please resolve them first'
- ' or revert the changes with "status --reset"')
+ raise CmdException('Unsolved conflicts. Please fix the conflicts'
+ ' then use "resolve <files>" or revert the'
+ ' changes with "status --reset".')
def print_crt_patch(crt_series, branch = None):
if not branch:
def print_crt_patch(crt_series, branch = None):
if not branch: