Skip to content
Snippets Groups Projects
Commit 00afe829 authored by Siddharth Agarwal's avatar Siddharth Agarwal
Browse files

test-help: fix for Mercurial 3.7

The other `sed` seems to no longer be necessary, so remove it.
parent bcf3d04d
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,9 @@
$ hg help | grep 'git' | sed 's/ */ /g'
hggit push and pull from a Git server
git Working with Git Repositories
$ hg help hggit | grep 'help git' | sed 's/:hg:`help git`/"hg help git"/g'
Mercurial 3.7+ uses single quotes
$ hg help hggit | grep 'help git' | sed "s/'/\"/g"
For more information and instructions, see "hg help git"
$ hg help git | grep 'Working with Git Repositories'
Working with Git Repositories
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment