Revision 4553f9de23f8d451bf801b566247bf987570626a authored by Johannes Schindelin on 29 July 2019, 20:08:11 UTC, committed by Junio C Hamano on 29 July 2019, 21:51:43 UTC
With the recent changes to allow building with MSVC=1, we now pass the
/OPT:REF option to the compiler. This confuses the parser that wants to
turn the output of a dry run into project definitions for QMake and Visual
Studio:

	Unhandled link option @ line 213: /OPT:REF at [...]

Let's just extend the code that passes through options that start with a
dash, so that it passes through options that start with a slash, too.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 6e50021
Raw File
sequencer.txt
--continue::
	Continue the operation in progress using the information in
	`.git/sequencer`.  Can be used to continue after resolving
	conflicts in a failed cherry-pick or revert.

--quit::
	Forget about the current operation in progress.  Can be used
	to clear the sequencer state after a failed cherry-pick or
	revert.

--abort::
	Cancel the operation and return to the pre-sequence state.
back to top