Skip to content

Instantly share code, notes, and snippets.

View anisharrai's full-sized avatar

Anisha Rungmahang Rai anisharrai

View GitHub Profile
@anisharrai
anisharrai / _git-objects-restore.php
Created July 14, 2021 07:05 — forked from jimrubenstein/_git-objects-restore.php
Restore files from .git/objects
#!/usr/local/bin/php
<?php
define('DIR', 'tree');
define('FILE', 'blob');
function main() {
$root_object = 'f3c8ec92f83e2a87c1d00a5681598126e23ab356';
restore_object($root_object, 'restored');
}