Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

AntonMeep/derelict-git2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

derelict-git2 Page on DUB License

A dynamic binding to libgit2 v0.25.1 for the D programming language.

Please see the sections on Compiling and Linking and The Derelict Loader in the Derelict documentation for information on how to build DerelictGit2 and load libgit2 at run time. In the meantime, here's some sample code.

Example:

import derelict.git2;

void main() {
	DerelictGit2.load(); // Load libgit2

	// Now you can call libgit2 functions
}