| 141 | } |
| 142 | |
| 143 | static void git_deconfig (const std::string& name) |
| 144 | { |
| 145 | std::vector<std::string> command; |
| 146 | command.push_back("git"); |
| 147 | command.push_back("config"); |
| 148 | command.push_back("--remove-section"); |
| 149 | command.push_back(name); |
| 150 | |
| 151 | if (!successful_exit(exec_command(command))) { |
| 152 | throw Error("'git config' failed"); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | static void configure_git_filters (const char* key_name) |
| 157 | { |
no test coverage detected