Fix checkout bug

This commit is contained in:
womax
2024-06-05 19:30:57 +02:00
parent 0fb0039b7d
commit ff2d6f49aa
7 changed files with 44 additions and 28 deletions

View File

@@ -135,13 +135,4 @@ void free_object(struct object *obj)
{
if (obj->content != NULL)
free(obj->content);
}
// int main(void)
// {
// char result[SHA_DIGEST_LENGTH * 2] = {0};
// char* str = "Hello, world!\n";
// hash_object(str, strlen(str), "blob", result);
// printf("%s\n", result);
// }
}