We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ccc38d commit c61b1ddCopy full SHA for c61b1dd
Git.php
@@ -294,6 +294,7 @@ public function run($command) {
294
* Accept a convert to HTML bool
295
*
296
* @access public
297
+ * @param bool return string with <br />
298
* @return string
299
*/
300
public function status($html = false) {
@@ -385,7 +386,7 @@ public function clone_remote($source) {
385
386
387
388
public function clean($dirs = false) {
- return $this->run("clean".(($dirs) ? " -d" : ""));
389
+ return $this->run("clean -f".(($dirs) ? " -d" : ""));
390
}
391
392
/**
0 commit comments