Analyze git commit history
- Specify the number of commits to analyze (default: 2)
- Execute the analysis command:
git diff HEAD~[N] HEAD -- . ':(exclude)*.lock' | cat
# context: customers.<int>successful | |
# context: customers.<int>errored | |
# context: customers.<int>total | |
idle | |
START_SYNC -> batch_started | |
INCREMENTAL_SYNC -> incremental_sync | |
complete | |
RETRY_CUSTOMERS -> retrying_customers |
Customer Sync | |
Idle | |
start sync -> In Progress | |
Complete | |
Complete No Errors | |
Complete Errors | |
retry errored customers -> Retrying Errored Customers | |
In Progress& |
Mobile App Auth | |
Logged Out* | |
authentication method -> Authentication Method? | |
Logged In | |
log out -> Logging Out | |
Logging Out | |
done -> Logged Out | |
failed -> Logging Out Error |
<?php | |
return [ | |
'default' => env('LOG_CHANNEL', 'stack'), | |
'channels' => [ | |
'stack' => [ | |
'driver' => 'stack', | |
'channels' => array_merge(['single'], php_sapi_name() === 'cli' ? ['stdout'] : []), | |
], |
string message = "hello"; | |
public void SayMessage(ref string message) { | |
Console.WriteLine(message); | |
message = "hello in here"; | |
} | |
SayMessage(ref message); // "hello" |
<?php | |
return call_user_func(array($this->provider, $operations[0])) ? success() : error() ; |