You appear to be a bot. Output may be restricted
Description
Return the actual git command to useNo longer defaulting to "status -s" but the command passed
Usage
Git::actual_command( $command, $parms );
Parameters
- $command
- ( mixed ) optional –
- $parms
- ( mixed ) optional –
Returns
voidSource
File name: oik-batch/includes/class-git.phpLines:
1 to 8 of 8
public function actual_command( $command=null, $parms=null ) { if ( null === $command ) { $command = "status -s"; } $actual = bw_array_get( $this->commands, $command, $command ); $cmd = "git $actual $parms"; return( $cmd ); }View on GitHub