Remove French quotation marks used as redirect operator.

This commit is contained in:
Alexandre Vassalotti 2009-01-24 02:14:29 +00:00
parent 392aa5cbc8
commit 8ed6b266a8
1 changed files with 6 additions and 6 deletions

View File

@ -426,15 +426,15 @@ svn
# Edit some code.
echo "The cake is a lie!" > README
# Since svn lacks support for local commits, we fake it with patches.
svn diff » commit-1.diff
svn diff » patch-1.diff
svn diff >> commit-1.diff
svn diff >> patch-1.diff
# Upload the patch-1 to bugs.python.org.
# Receive reviewer comments.
# Edit some code.
echo "The cake is real!" > README
# Since svn lacks support for local commits, we fake it with patches.
svn diff » commit-2.diff
svn diff » patch-2.diff
svn diff >> commit-2.diff
svn diff >> patch-2.diff
# Upload patch-2 to bugs.python.org
@ -465,12 +465,12 @@ hg
hg commit -m "Stuff I did"
# Create a patch containing the last commit. Use hg export REV: to
# export all changes from revision REV (inclusive).
hg export tip » stuff-i-did.patch
hg export tip >> stuff-i-did.patch
# Upload patch to bugs.python.org
# Receive reviewer comments
# Edit some code
hg commit -m "Address reviewer comments."
hg export tip » additional-fixes.patch
hg export tip >> additional-fixes.patch
# Upload patch to bugs.python.org