##// END OF EJS Templates
merge with crew
Matt Mackall -
r15433:4df3de1d merge default
parent child Browse files
Show More
@@ -6436,12 +6436,15 b' msgstr "&Yes - \xc3\xbcbernimmt diese \xc3\x84nderung"'
6436 6436 msgid "&No, skip this change"
6437 6437 msgstr "&No, überspringt diese Änderung"
6438 6438
6439 #, fuzzy
6439 6440 msgid "&Skip remaining changes to this file"
6440 6441 msgstr "&Überspringe die restlichen Änderungen an dieser Datei"
6441 6442
6443 #, fuzzy
6442 6444 msgid "Record remaining changes to this &file"
6443 6445 msgstr "Zeichne die restlichen Änderungen an dieser &Datei auf"
6444 6446
6447 #, fuzzy
6445 6448 msgid "&Done, skip remaining changes and files"
6446 6449 msgstr "&Fertig, überspringe die restlichen Änderungen und Dateien"
6447 6450
@@ -5291,12 +5291,15 b' msgstr "&Salta le modifiche rimanenti a '
5291 5291 msgid "Record remaining changes to this &file"
5292 5292 msgstr "Registra le modifiche rimanenti a questo &file"
5293 5293
5294 #, fuzzy
5294 5295 msgid "&Done, skip remaining changes and files"
5295 5296 msgstr "&Fatto, salta le modifiche e i file rimanenti"
5296 5297
5298 #, fuzzy
5297 5299 msgid "Record &all changes to all remaining files"
5298 5300 msgstr "Registra &tutte le modifiche a tutti i file rimanenti"
5299 5301
5302 #, fuzzy
5300 5303 msgid "&Quit, recording no changes"
5301 5304 msgstr "&Esce, non registrando alcuna modifica"
5302 5305
@@ -5420,12 +5420,14 b' msgstr ""'
5420 5420 msgid "&No, skip this change"
5421 5421 msgstr "&Nu, omite această modificare"
5422 5422
5423 #, fuzzy
5423 5424 msgid "&Skip remaining changes to this file"
5424 5425 msgstr "&Omite restul modificărilor pentru acest fișier"
5425 5426
5426 5427 msgid "Record remaining changes to this &file"
5427 5428 msgstr ""
5428 5429
5430 #, fuzzy
5429 5431 msgid "&Done, skip remaining changes and files"
5430 5432 msgstr "În&cheiat, omite restul modificărilor și fișierelor"
5431 5433
@@ -75,32 +75,33 b' Interaction with Mercurial Commands'
75 75 :add: add does not recurse in subrepos unless -S/--subrepos is
76 76 specified. However, if you specify the full path of a file in a
77 77 subrepo, it will be added even without -S/--subrepos specified.
78 Subversion subrepositories are currently silently
78 Git and Subversion subrepositories are currently silently
79 79 ignored.
80 80
81 81 :archive: archive does not recurse in subrepositories unless
82 82 -S/--subrepos is specified.
83 83
84 84 :commit: commit creates a consistent snapshot of the state of the
85 entire project and its subrepositories. It does this by first
86 attempting to commit all modified subrepositories, then recording
87 their state and finally committing it in the parent
88 repository. Mercurial can be made to abort if any subrepository
89 content is modified by setting "ui.commitsubrepos=no" in a
90 configuration file (see :hg:`help config`).
85 entire project and its subrepositories. If any subrepositories
86 have been modified, Mercurial will abort. Mercurial can be made
87 to instead commit all modified subrepositories by specifying
88 -S/--subrepos, or setting "ui.commitsubrepos=True" in a
89 configuration file (see :hg:`help config`). After there are no
90 longer any modified subrepositories, it records their state and
91 finally commits it in the parent repository.
91 92
92 93 :diff: diff does not recurse in subrepos unless -S/--subrepos is
93 94 specified. Changes are displayed as usual, on the subrepositories
94 elements. Subversion subrepositories are currently silently
95 ignored.
95 elements. Git and Subversion subrepositories are currently
96 silently ignored.
96 97
97 98 :incoming: incoming does not recurse in subrepos unless -S/--subrepos
98 is specified. Subversion subrepositories are currently silently
99 ignored.
99 is specified. Git and Subversion subrepositories are currently
100 silently ignored.
100 101
101 102 :outgoing: outgoing does not recurse in subrepos unless -S/--subrepos
102 is specified. Subversion subrepositories are currently silently
103 ignored.
103 is specified. Git and Subversion subrepositories are currently
104 silently ignored.
104 105
105 106 :pull: pull is not recursive since it is not clear what to pull prior
106 107 to running :hg:`update`. Listing and retrieving all
@@ -111,7 +112,7 b' Interaction with Mercurial Commands'
111 112 :push: Mercurial will automatically push all subrepositories first
112 113 when the parent repository is being pushed. This ensures new
113 114 subrepository changes are available when referenced by top-level
114 repositories.
115 repositories. Push is a no-op for Subversion subrepositories.
115 116
116 117 :status: status does not recurse into subrepositories unless
117 118 -S/--subrepos is specified. Subrepository changes are displayed as
General Comments 0
You need to be logged in to leave comments. Login now