GitCommands.GitModule.GetFullTree C# (CSharp) Method

GetFullTree() public method

public GetFullTree ( string id ) : string[]
id string
return string[]
        public string[] GetFullTree(string id)
        {
            string tree = this.RunCacheableCmd(AppSettings.GitCommand, String.Format("ls-tree -z -r --name-only {0}", id), SystemEncoding);
            return tree.Split(new char[] { '\0', '\n' });
        }
GitModule