| 226 | } |
| 227 | |
| 228 | Git::Result Git::reset( std::vector<std::string> files, const std::string& projectDir ) { |
| 229 | return gitSimple( String::format( "reset -q HEAD -- %s", asList( files ) ), projectDir ); |
| 230 | } |
| 231 | |
| 232 | Git::Result Git::diff( DiffMode mode, const std::string& projectDir ) { |
| 233 | std::string modeTxt; |