Run this command to remember your password:
git config --global credential.helper 'cache --timeout 28800'Above command will tell git to cache your password for 8 hours.
| ### WARNING: READ CAREFULLY BEFORE ATTEMPTING ### | |
| # | |
| # Officially, this is not recommended. YMMV | |
| # https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/ | |
| # | |
| # This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit | |
| # | |
| # Credit to anfractuosity and fgimenezm for figuring out additional details for kernels | |
| # |
| <?php | |
| // Author: Ngo Minh Nam | |
| $dir = "/path/to/your/repo/"; | |
| $output = array(); | |
| chdir($dir); | |
| exec("git log",$output); | |
| $history = array(); | |
| foreach($output as $line){ | |
| if(strpos($line, 'commit')===0){ |