We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4150170 commit 4ecc7c8Copy full SHA for 4ecc7c8
gitbootcamp.rst
@@ -216,6 +216,10 @@ Scenario:
216
Set up the following git alias::
217
218
$ git config --global alias.pr '!sh -c "git fetch upstream pull/${1}/head:pr_${1} && git checkout pr_${1}" -'
219
+
220
+On Windows, reverse the single (`'`) and double (`"`) quotes::
221
222
+ git config --global alias.pr "!sh -c 'git fetch upstream pull/${1}/head:pr_${1} && git checkout pr_${1}' -"
223
224
The alias only needs to be done once. After the alias is set up, you can get a
225
local copy of a pull request as follows::
0 commit comments