This commit is contained in:
firebadnofire 2024-04-08 18:32:00 -04:00
parent ef98db4530
commit 7a9f0c74e8
Signed by: firebadnofire
SSH Key Fingerprint: SHA256:bnN1TGRauJN84CxL1IZ/2uHNvJualwYkFjOKaaOilJE
2 changed files with 12 additions and 0 deletions

12
sync.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdlib.h>
#include <stdio.h>
int main() {
// Running system commands in order
system("git pull");
system("git add .");
system("git commit -S -m \"commit\"");
system("git push");
return 0;
}

BIN
sync.exe Normal file

Binary file not shown.