我可以使用 bash 挑选一个提交
git cherry-pick -n <HASH>
Run Code Online (Sandbox Code Playgroud)
但是有没有办法使用 TortoiseGit 来做到这一点呢?
我在Sencha Touch 2中有一个字段集,如下所示:
{
id:'contactForm',
xtype: 'fieldset',
title: 'Information',
items: [
{
xtype: 'textfield',
label: 'First Name',
placeHolder: 'Your First Name',
name:'firstName',
id:'firstName',
},
{
xtype: 'textfield',
label: 'Last Name',
placeHolder: 'Your Last Name',
name:'lastName'
},
{
xtype: 'emailfield',
label: 'Email',
placeHolder: 'email@example.com'
},
{
xtype: 'button',
height: 37,
style: 'margin-left:35%',
width: 100,
iconAlign: 'center',
text: 'Submit',
action:'ContactSubmit'
},
{
xtype: 'hiddenfield',
id: 'HNumberOfBedRoom',
value:'2'
},
{
xtype: 'hiddenfield',
id: 'HPetFriendlyId',
value:'2'
}
]
}
Run Code Online (Sandbox Code Playgroud)
在我的控制器中,我有以下内容:
refs: {
contactForm: '#contactForm' …