##// END OF EJS Templates
tests: finally fix up test-fuzz-targets.t...
tests: finally fix up test-fuzz-targets.t It's been failing on my workstation for a while, since I have a new enough LLVM that I had the fuzzer goo, but not so new that I actually had FuzzedDataProvider. This is a better solution all around in my opinion. I _believe_ this should let us run these tests on most systems, even those using GCC instead of clang. That said, my one attempt to test this on my macOS laptop failed miserably, and I don't feel like doing more work on this right now. Differential Revision: https://phab.mercurial-scm.org/D7566

File last commit:

r44185:5470e636 stable
r44267:19da643d default
Show More
test-githelp.t
320 lines | 8.4 KiB | text/troff | Tads3Lexer
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 $ cat >> $HGRCPATH << EOF
> [extensions]
> githelp =
> EOF
$ hg init repo
$ cd repo
$ echo foo > test_file
$ mkdir dir
$ echo foo > dir/file
$ echo foo > removed_file
$ echo foo > deleted_file
$ hg add -q .
$ hg commit -m 'bar'
$ hg bookmark both
$ touch both
$ touch untracked_file
$ hg remove removed_file
$ rm deleted_file
githelp on a single command should succeed
$ hg githelp -- commit
hg commit
$ hg githelp -- git commit
hg commit
githelp should fail nicely if we don't give it arguments
$ hg githelp
abort: missing git command - usage: hg githelp -- <git command>
[255]
$ hg githelp -- git
abort: missing git command - usage: hg githelp -- <git command>
[255]
githelp on a command with options should succeed
$ hg githelp -- commit -pm "abc"
Gregory Szorc
githelp: replace suggestion of `hg record`...
r35736 hg commit --interactive -m 'abc'
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp on a command with standalone unrecognized option should succeed with warning
$ hg githelp -- commit -p -v
ignoring unknown option -v
Gregory Szorc
githelp: replace suggestion of `hg record`...
r35736 hg commit --interactive
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp on a command with unrecognized option packed with other options should fail with error
$ hg githelp -- commit -pv
Matt Harbison
githelp: cleanup one more abort message...
r38145 abort: unknown option 'v' packed with other options
(please try passing the option as its own flag: -v)
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 [255]
githelp for git rebase --skip
$ hg githelp -- git rebase --skip
hg revert --all -r .
hg rebase --continue
githelp for git commit --amend (hg commit --amend pulls up an editor)
$ hg githelp -- commit --amend
hg commit --amend
githelp for git commit --amend --no-edit (hg amend does not pull up an editor)
$ hg githelp -- commit --amend --no-edit
hg amend
githelp for git checkout -- . (checking out a directory)
$ hg githelp -- checkout -- .
note: use --no-backup to avoid creating .orig files
hg revert .
githelp for git checkout "HEAD^" (should still work to pass a rev)
$ hg githelp -- checkout "HEAD^"
hg update .^
githelp checkout: args after -- should be treated as paths no matter what
$ hg githelp -- checkout -- HEAD
note: use --no-backup to avoid creating .orig files
hg revert HEAD
githelp for git checkout with rev and path
$ hg githelp -- checkout "HEAD^" -- file.txt
note: use --no-backup to avoid creating .orig files
hg revert -r .^ file.txt
githelp for git with rev and path, without separator
$ hg githelp -- checkout "HEAD^" file.txt
note: use --no-backup to avoid creating .orig files
hg revert -r .^ file.txt
githelp for checkout with a file as first argument
$ hg githelp -- checkout test_file
note: use --no-backup to avoid creating .orig files
hg revert test_file
githelp for checkout with a removed file as first argument
$ hg githelp -- checkout removed_file
note: use --no-backup to avoid creating .orig files
hg revert removed_file
githelp for checkout with a deleted file as first argument
$ hg githelp -- checkout deleted_file
note: use --no-backup to avoid creating .orig files
hg revert deleted_file
githelp for checkout with a untracked file as first argument
$ hg githelp -- checkout untracked_file
note: use --no-backup to avoid creating .orig files
hg revert untracked_file
githelp for checkout with a directory as first argument
$ hg githelp -- checkout dir
note: use --no-backup to avoid creating .orig files
hg revert dir
githelp for checkout when not in repo root
$ cd dir
$ hg githelp -- checkout file
note: use --no-backup to avoid creating .orig files
hg revert file
$ cd ..
githelp for checkout with an argument that is both a file and a revision
$ hg githelp -- checkout both
hg update both
githelp for checkout with the -p option
$ hg githelp -- git checkout -p xyz
hg revert -i -r xyz
$ hg githelp -- git checkout -p xyz -- abc
note: use --no-backup to avoid creating .orig files
hg revert -i -r xyz abc
githelp for checkout with the -f option and a rev
$ hg githelp -- git checkout -f xyz
hg update -C xyz
$ hg githelp -- git checkout --force xyz
hg update -C xyz
githelp for checkout with the -f option without an arg
$ hg githelp -- git checkout -f
hg revert --all
$ hg githelp -- git checkout --force
hg revert --all
githelp for grep with pattern and path
$ hg githelp -- grep shrubbery flib/intern/
hg grep shrubbery flib/intern/
githelp for reset, checking ~ in git becomes ~1 in mercurial
$ hg githelp -- reset HEAD~
Gregory Szorc
githelp: improve help for "reset"...
r35738 hg update .~1
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 $ hg githelp -- reset "HEAD^"
Gregory Szorc
githelp: improve help for "reset"...
r35738 hg update .^
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 $ hg githelp -- reset HEAD~3
Gregory Szorc
githelp: improve help for "reset"...
r35738 hg update .~3
$ hg githelp -- reset --mixed HEAD
Matt Harbison
githelp: lowercase the start of output messages for consistency...
r38134 note: --mixed has no meaning since Mercurial has no staging area
Gregory Szorc
githelp: improve help for "reset"...
r35738
hg update .
$ hg githelp -- reset --soft HEAD
Matt Harbison
githelp: lowercase the start of output messages for consistency...
r38134 note: --soft has no meaning since Mercurial has no staging area
Gregory Szorc
githelp: improve help for "reset"...
r35738
hg update .
$ hg githelp -- reset --hard HEAD
hg update --clean .
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for git show --name-status
$ hg githelp -- git show --name-status
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg log --style status -r .
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for git show --pretty=format: --name-status
$ hg githelp -- git show --pretty=format: --name-status
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg status --change .
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for show with no arguments
$ hg githelp -- show
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg export
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for show with a path
$ hg githelp -- show test_file
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg cat test_file
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for show with not a path:
$ hg githelp -- show rev
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg export rev
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for show with many arguments
$ hg githelp -- show argone argtwo
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg export argone argtwo
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 $ hg githelp -- show test_file argone argtwo
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg cat test_file argone argtwo
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for show with --unified options
$ hg githelp -- show --unified=10
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg export --config diff.unified=10
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 $ hg githelp -- show -U100
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg export --config diff.unified=100
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for show with a path and --unified
$ hg githelp -- show -U20 test_file
Gregory Szorc
githelp: don't reference 3rd party commands for `git show`...
r35739 hg cat test_file --config diff.unified=20
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for stash drop without name
$ hg githelp -- git stash drop
hg shelve -d <shelve name>
githelp for stash drop with name
$ hg githelp -- git stash drop xyz
hg shelve -d xyz
av6
githelp: translate git stash show and clear actions and --patch flag...
r42589 githelp for stash list with patch
$ hg githelp -- git stash list -p
hg shelve -l -p
githelp for stash show
$ hg githelp -- git stash show
hg shelve --stat
githelp for stash show with patch and name
$ hg githelp -- git stash show -p mystash
hg shelve -p mystash
githelp for stash clear
$ hg githelp -- git stash clear
hg shelve --cleanup
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 githelp for whatchanged should show deprecated message
$ hg githelp -- whatchanged -p
Matt Harbison
githelp: drop the trailing period from single sentence output for consistency...
r38159 this command has been deprecated in the git project, thus isn't supported by this tool
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
githelp for git branch -m renaming
$ hg githelp -- git branch -m old new
hg bookmark -m old new
When the old name is omitted, git branch -m new renames the current branch.
$ hg githelp -- git branch -m new
hg bookmark -m `hg log -T"{activebookmark}" -r .` new
Branch deletion in git strips commits
$ hg githelp -- git branch -d
hg strip -B
$ hg githelp -- git branch -d feature
hg strip -B feature -B
$ hg githelp -- git branch --delete experiment1 experiment2
hg strip -B experiment1 -B experiment2 -B
githelp for reuse message using the shorthand
$ hg githelp -- git commit -C deadbeef
hg commit -M deadbeef
githelp for reuse message using the the long version
$ hg githelp -- git commit --reuse-message deadbeef
hg commit -M deadbeef
Denis Laxalde
tests: cover revision conversion logic in githelp tests...
r44185 githelp for reuse message using HEAD
$ hg githelp -- git commit --reuse-message HEAD~
hg commit -M .~1
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 githelp for apply with no options
$ hg githelp -- apply
hg import --no-commit
githelp for apply with directory strip custom
$ hg githelp -- apply -p 5
hg import --no-commit -p 5
av6
githelp: translate --directory of git apply to --prefix...
r42587 githelp for apply with prefix directory
$ hg githelp -- apply --directory=modules
hg import --no-commit --prefix modules
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732 git merge-base
$ hg githelp -- git merge-base --is-ancestor
ignoring unknown option --is-ancestor
Matt Harbison
githelp: drop the trailing period from single sentence output for consistency...
r38159 note: ancestors() is part of the revset language
Matt Harbison
githelp: lowercase the start of output messages for consistency...
r38134 (learn more about revsets with 'hg help revsets')
Gregory Szorc
githelp: vendor Facebook authored extension...
r35732
hg log -T '{node}\n' -r 'ancestor(A,B)'
githelp for git blame
$ hg githelp -- git blame
hg annotate -udl
Gregory Szorc
githelp: improve help for `git add`...
r35733
githelp for add
$ hg githelp -- git add
hg add
$ hg githelp -- git add -p
note: Mercurial will commit when complete, as there is no staging area in Mercurial
hg commit --interactive
$ hg githelp -- git add --all
Matt Harbison
githelp: drop the trailing period from single sentence output for consistency...
r38159 note: use hg addremove to remove files that have been deleted
Gregory Szorc
githelp: improve help for `git add`...
r35733
hg add
Gregory Szorc
githelp: clean up reflog help...
r35737
githelp for reflog
$ hg githelp -- git reflog
hg journal
Matt Harbison
githelp: drop the trailing period from single sentence output for consistency...
r38159 note: in hg commits can be deleted from repo but we always have backups
Gregory Szorc
githelp: clean up reflog help...
r35737
$ hg githelp -- git reflog --all
hg journal --all
Matt Harbison
githelp: drop the trailing period from single sentence output for consistency...
r38159 note: in hg commits can be deleted from repo but we always have backups