/// <summary> /// Displays list of all the variables set in the config file /// </summary> private void doList() { GitSharp.Config cfg = new GitSharp.Config(Repository); foreach (KeyValuePair <string, string> pair in cfg) { OutputStream.WriteLine(pair.Key + "=" + pair.Value); } OutputStream.Flush(); }
/// <summary> /// Displays list of all the variables set in the config file /// </summary> private void doList() { GitSharp.Config cfg = new GitSharp.Config(Repository); foreach (KeyValuePair<string, string> pair in cfg) { OutputStream.WriteLine(pair.Key + "=" + pair.Value); } OutputStream.Flush(); }