18 lines
221 B
C
18 lines
221 B
C
/* git.c
|
|
*
|
|
* Routines for initilizing a git repository
|
|
*
|
|
* written by vx-clutch
|
|
*/
|
|
|
|
#include "git.h"
|
|
#include "edef.h"
|
|
#include <stdlib.h>
|
|
|
|
int ginit()
|
|
{
|
|
if (git) return 0;
|
|
system("git init --quiet");
|
|
return 0;
|
|
}
|