GitCommands.GitCommands.GetFullTree C# (CSharp) Method

GetFullTree() public static method

public static GetFullTree ( string id ) : string[]
id string
return string[]
        public static string[] GetFullTree(string id)
        {
            string tree = RunCachableCmd(Settings.GitCommand, string.Format("ls-tree -z -r --name-only {0}", id));
            return tree.Split(new char[]{'\0','\n'});
        }
GitCommands