Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Matt Harbison
- Fri, 28 May 2021 21:33:20
Show More
rust/hg-core/src/dirstate/status.rs
0
+5
-3
@@
-583,9
+583,11
b' where'
583
. unwrap ();
583
. unwrap ();
584
}
584
}
585
} else if self . is_ignored ( & filename ) && self . options . list_ignored {
585
} else if self . is_ignored ( & filename ) && self . options . list_ignored {
586
files_sender
586
if self . matcher . matches ( & filename ) {
587
. send (( filename . to_owned (), Dispatch :: Ignored ))
587
files_sender
588
. unwrap ();
588
. send (( filename . to_owned (), Dispatch :: Ignored ))
589
. unwrap ();
590
}
589
}
591
}
590
} else if let Some ( entry ) = entry_option {
592
} else if let Some ( entry ) = entry_option {
591
// Used to be a file or a folder, now something else.
593
// Used to be a file or a folder, now something else.
tests/test-http-bundle1.t
0
+3
-3
@@
-192,10
+192,10
b' test http authentication'
192
$ cat pid >> $ DAEMON_PIDS
192
$ cat pid >> $ DAEMON_PIDS
193
193
194
$ cat << EOF > get_pass . py
194
$ cat << EOF > get_pass . py
195
> import getpass
195
> from mercurial import util
196
> def newgetpass ( arg):
196
> def newgetpass ():
197
> return "pass"
197
> return "pass"
198
> getpass. getpass = newgetpass
198
> util . get_ password = newgetpass
199
> EOF
199
> EOF
200
200
201
$ hg id http : //localhost:$HGPORT2/
201
$ hg id http : //localhost:$HGPORT2/
tests/test-http.t
0
+3
-3
@@
-181,10
+181,10
b' test http authentication'
181
$ cat pid >> $ DAEMON_PIDS
181
$ cat pid >> $ DAEMON_PIDS
182
182
183
$ cat << EOF > get_pass . py
183
$ cat << EOF > get_pass . py
184
> import getpass
184
> from mercurial import util
185
> def newgetpass ( arg):
185
> def newgetpass ():
186
> return "pass"
186
> return "pass"
187
> getpass. getpass = newgetpass
187
> util . get_ password = newgetpass
188
> EOF
188
> EOF
189
189
190
$ hg id http : //localhost:$HGPORT2/
190
$ hg id http : //localhost:$HGPORT2/
tests/test-largefiles-wireproto.t
0
+3
-3
@@
-425,10
+425,10
b' a large file from the server rather than'
425
> - d - p $ HGPORT -- pid - file hg . pid - A access . log
425
> - d - p $ HGPORT -- pid - file hg . pid - A access . log
426
$ cat hg . pid >> $ DAEMON_PIDS
426
$ cat hg . pid >> $ DAEMON_PIDS
427
$ cat << EOF > get_pass . py
427
$ cat << EOF > get_pass . py
428
> import getpass
428
> from mercurial import util
429
> def newgetpass ( arg):
429
> def newgetpass ():
430
> return "pass"
430
> return "pass"
431
> getpass. getpass = newgetpass
431
> util . get_ password = newgetpass
432
> EOF
432
> EOF
433
$ hg clone -- config ui . interactive = true -- config extensions . getpass = get_pass . py \
433
$ hg clone -- config ui . interactive = true -- config extensions . getpass = get_pass . py \
434
> http : //user@localhost:$HGPORT credentialclone
434
> http : //user@localhost:$HGPORT credentialclone
tests/test-status.t
0
+17
0
@@
-881,3
+881,20
b' Deeply nested files in an ignored direct'
881
$ hg status -- ignored
881
$ hg status -- ignored
882
I ignored
882
I ignored
883
I ignored - dir / subdir / 1
883
I ignored - dir / subdir / 1
884
885
Check using include flag while listing ignored composes correctly ( issue6514 )
886
887
$ cd ..
888
$ hg init issue6514
889
$ cd issue6514
890
$ mkdir ignored - folder
891
$ touch A . hs B . hs C . hs ignored - folder / other . txt ignored - folder / ctest . hs
892
$ cat >. hgignore << EOF
893
> A . hs
894
> B . hs
895
> ignored - folder /
896
> EOF
897
$ hg st - i - I 're:.*\.hs$'
898
I A . hs
899
I B . hs
900
I ignored - folder / ctest . hs
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages