public void RemoveConfigSection(string configSectionName)
 {
     SettingsCache.RemoveConfigSection(configSectionName);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Removes the specific configuration section from the .git/config file.
 /// </summary>
 /// <param name="configSectionName">The name of the configuration section.</param>
 /// <param name="performSave">If <see langword="true"/> the configuration changes will be saved immediately.</param>
 public void RemoveConfigSection(string configSectionName, bool performSave = false)
 {
     SettingsCache.RemoveConfigSection(configSectionName, performSave);
 }