Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable sync: more user education

Changeset 8ec2ab6a3918

Parent 3ebde6cf088a

by Steve Borho

Changes to one file · Browse files at 8ec2ab6a3918 Showing diff from parent 3ebde6cf088a Diff from another changeset...

 
1256
1257
1258
1259
 
 
1260
1261
1262
1263
 
 
1264
1265
1266
1267
 
 
1268
1269
1270
 
1256
1257
1258
 
1259
1260
1261
1262
 
 
1263
1264
1265
1266
1267
 
1268
1269
1270
1271
1272
@@ -1256,15 +1256,17 @@
  layout = QFormLayout()   self.setLayout(layout)   - self.newbranchcb = QCheckBox(_('Allow push of a new branch')) + self.newbranchcb = QCheckBox( + _('Allow push of a new branch (--new-branch)'))   self.newbranchcb.setChecked(opts.get('new-branch', False))   layout.addRow(self.newbranchcb, None) - self.forcecb = QCheckBox(_('Force push or pull (override safety' - ' checks)')) + self.forcecb = QCheckBox( + _('Force push or pull (override safety checks, --force)'))   self.forcecb.setChecked(opts.get('force', False))   layout.addRow(self.forcecb, None)   - self.subrepocb = QCheckBox(_('Recurse into subrepositories')) + self.subrepocb = QCheckBox( + _('Recurse into subrepositories (--subrepos)'))   self.subrepocb.setChecked(opts.get('subrepos', False))   layout.addRow(self.subrepocb, None)