GitSharp.Core.Repository.Repository C# (CSharp) Method

Repository() public method

Construct a representation of a Git repository. The work tree, object directory, alternate object directories and index file locations are deduced from the given git directory and the default rules.
public Repository ( DirectoryInfo d ) : System
d DirectoryInfo GIT_DIR (the location of the repository metadata).
return System
        public Repository(DirectoryInfo d)
            : this(d, null, null, null, null)
        {
        }

Same methods

Repository::Repository ( DirectoryInfo d, DirectoryInfo workTree ) : System
Repository::Repository ( DirectoryInfo d, DirectoryInfo workTree, DirectoryInfo objectDir, DirectoryInfo alternateObjectDir, FileInfo indexFile ) : System