Beispiel #1
0
 protected function run(\DialoGit\Dialoger $dialoger)
 {
     $picker = new \DialoGit\Picker\Stash($dialoger);
     $stash = $picker->pickOne('Pick one stash to <b>apply</b>:');
     $dialoger->dialogConfirm('Are you sure that you wish to <b>apply</b> this stash?\\n\\n' . $stash);
     $dialoger->runGit('stash apply "' . $stash . '"');
 }