Create an extras directory with files that are not related to the build but that I need to keep around for reference.

This commit is contained in:
Zed A. Shaw 2024-05-11 06:16:15 -04:00
parent ccf37e758c
commit 8b61f7b86b
5 changed files with 297 additions and 11 deletions

View file

@ -0,0 +1,26 @@
#include <git2.h>
#include <iostream>
#include <iomanip>
#include <fstream>
#include <fmt/core.h>
#include <regex>
#include <string>
#include <iterator>
#include <ctime>
#include "dbc.h"
#include <unistd.h>
#include <stdio.h>
#include <regex>
int main(int argc, char *argv[])
{
git_repository* repo = nullptr;
git_libgit2_init();
int err = git_repository_open(&repo, argv[1]);
git_libgit2_shutdown();
git_libgit2_shutdown();
}