##// END OF EJS Templates
tests: unify test-mq
tests: unify test-mq

File last commit:

r11728:226a328a default
r11894:a15936ac default
Show More
test-qrecord.out
220 lines | 4.5 KiB | text/plain | TextLexer
Kirill Smelkov
qrecord: add tests
r5933 % help (no mq, so no qrecord)
hg: unknown command 'qrecord'
Mercurial Distributed SCM
basic commands:
add add the specified files on the next commit
timeless
Improve English for help text of many core hg commands....
r8779 annotate show changeset information by line for each file
Kirill Smelkov
qrecord: add tests
r5933 clone make a copy of an existing repository
commit commit the specified files or all outstanding changes
diff diff repository (or selected files)
export dump the header and diffs for one or more changesets
Steve Losh
Add a forget command for easily untracking files....
r8902 forget forget the specified files on the next commit
Kirill Smelkov
qrecord: add tests
r5933 init create a new repository in the given directory
log show revision history of entire repository or files
merge merge working directory with another revision
pull pull changes from the specified source
push push changes to the specified destination
remove remove the specified files on the next commit
Matt Mackall
commands: improve some command summaries
r10889 serve start stand-alone webserver
Kirill Smelkov
qrecord: add tests
r5933 status show changed files in the working directory
Matt Mackall
Introduce summary command
r9603 summary summarize working directory state
Matt Mackall
commands: improve some command summaries
r10889 update update working directory (or switch revisions)
Kirill Smelkov
qrecord: add tests
r5933
use "hg help" for the full list of commands or "hg -v" for details
% help (mq present)
hg qrecord [OPTION]... PATCH [FILE]...
interactively record a new patch
Martin Geisler
Use hg role in help strings
r10973 See "hg help qnew" & "hg help record" for more information and usage.
Kirill Smelkov
qrecord: add tests
r5933
options:
FUJIWARA Katsunori
help: show value requirement and multiple occurrence of options...
r11321 -e --edit edit commit message
-g --git use git extended diff format
-U --currentuser add "From: <current user>" to patch
-u --user USER add "From: <USER>" to patch
-D --currentdate add "Date: <current date>" to patch
-d --date DATE add "Date: <DATE>" to patch
-I --include PATTERN [+] include names matching the given patterns
-X --exclude PATTERN [+] exclude names matching the given patterns
-m --message TEXT use text as commit message
-l --logfile FILE read commit message from file
[+] marked option can be specified multiple times
Kirill Smelkov
qrecord: add tests
r5933
use "hg -v help qrecord" to show global options
% base commit
% changing files
% whole diff
diff -r 1057167b20ef 1.txt
--- a/1.txt
+++ b/1.txt
@@ -1,5 +1,5 @@
1
-2
+2 2
3
-4
+4 4
5
diff -r 1057167b20ef 2.txt
--- a/2.txt
+++ b/2.txt
@@ -1,5 +1,5 @@
a
-b
+b b
c
d
e
diff -r 1057167b20ef dir/a.txt
--- a/dir/a.txt
+++ b/dir/a.txt
@@ -1,4 +1,4 @@
-hello world
+hello world!
someone
up
% qrecord a.patch
diff --git a/1.txt b/1.txt
timeless
record: count lines changed as the number of lines added or removed...
r11728 2 hunks, 2 lines changed
Martin Geisler
record: separate each hunk with a blank line...
r10694 examine changes to '1.txt'? [Ynsfdaq?]
@@ -1,3 +1,3 @@
Kirill Smelkov
qrecord: add tests
r5933 1
-2
+2 2
3
Martin Geisler
record: separate each hunk with a blank line...
r10694 record change 1/6 to '1.txt'? [Ynsfdaq?]
@@ -3,3 +3,3 @@
Kirill Smelkov
qrecord: add tests
r5933 3
-4
+4 4
5
Martin Geisler
record: separate each hunk with a blank line...
r10694 record change 2/6 to '1.txt'? [Ynsfdaq?]
diff --git a/2.txt b/2.txt
timeless
record: count lines changed as the number of lines added or removed...
r11728 1 hunks, 1 lines changed
Martin Geisler
record: separate each hunk with a blank line...
r10694 examine changes to '2.txt'? [Ynsfdaq?]
@@ -1,5 +1,5 @@
Kirill Smelkov
qrecord: add tests
r5933 a
-b
+b b
c
d
e
Martin Geisler
record: separate each hunk with a blank line...
r10694 record change 4/6 to '2.txt'? [Ynsfdaq?]
diff --git a/dir/a.txt b/dir/a.txt
timeless
record: count lines changed as the number of lines added or removed...
r11728 1 hunks, 1 lines changed
timeless@mozdev.org
record: remove superfluous space
r9461 examine changes to 'dir/a.txt'? [Ynsfdaq?]
Martin Geisler
record: separate each hunk with a blank line...
r10694
Kirill Smelkov
qrecord: add tests
r5933 % after qrecord a.patch 'tip'
changeset: 1:5d1ca63427ee
Eric Eisner
tags: return tags in sorted order...
r11047 tag: a.patch
tag: qbase
Kirill Smelkov
qrecord: add tests
r5933 tag: qtip
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: aaa
diff -r 1057167b20ef -r 5d1ca63427ee 1.txt
--- a/1.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/1.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +1,5 @@
1
-2
+2 2
3
4
5
diff -r 1057167b20ef -r 5d1ca63427ee 2.txt
--- a/2.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/2.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +1,5 @@
a
-b
+b b
c
d
e
% after qrecord a.patch 'diff'
diff -r 5d1ca63427ee 1.txt
--- a/1.txt
+++ b/1.txt
@@ -1,5 +1,5 @@
1
2 2
3
-4
+4 4
5
diff -r 5d1ca63427ee dir/a.txt
--- a/dir/a.txt
+++ b/dir/a.txt
@@ -1,4 +1,4 @@
-hello world
+hello world!
someone
up
% qrecord b.patch
diff --git a/1.txt b/1.txt
timeless
record: count lines changed as the number of lines added or removed...
r11728 1 hunks, 1 lines changed
Martin Geisler
record: separate each hunk with a blank line...
r10694 examine changes to '1.txt'? [Ynsfdaq?]
@@ -1,5 +1,5 @@
Kirill Smelkov
qrecord: add tests
r5933 1
2 2
3
-4
+4 4
5
Martin Geisler
record: separate each hunk with a blank line...
r10694 record change 1/3 to '1.txt'? [Ynsfdaq?]
diff --git a/dir/a.txt b/dir/a.txt
timeless
record: count lines changed as the number of lines added or removed...
r11728 1 hunks, 1 lines changed
Martin Geisler
record: separate each hunk with a blank line...
r10694 examine changes to 'dir/a.txt'? [Ynsfdaq?]
@@ -1,4 +1,4 @@
Kirill Smelkov
qrecord: add tests
r5933 -hello world
+hello world!
someone
up
timeless@mozdev.org
record: remove superfluous space
r9461 record change 3/3 to 'dir/a.txt'? [Ynsfdaq?]
Martin Geisler
record: separate each hunk with a blank line...
r10694
Kirill Smelkov
qrecord: add tests
r5933 % after qrecord b.patch 'tip'
changeset: 2:b056198bf878
Eric Eisner
tags: return tags in sorted order...
r11047 tag: b.patch
Kirill Smelkov
qrecord: add tests
r5933 tag: qtip
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: bbb
diff -r 5d1ca63427ee -r b056198bf878 1.txt
--- a/1.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/1.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +1,5 @@
1
2 2
3
-4
+4 4
5
diff -r 5d1ca63427ee -r b056198bf878 dir/a.txt
--- a/dir/a.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/dir/a.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +1,4 @@
-hello world
+hello world!
someone
up
% after qrecord b.patch 'diff'
% --- end ---