| 218 | } |
| 219 | |
| 220 | Git::Result Git::restore( std::vector<std::string> files, const std::string& projectDir ) { |
| 221 | return gitSimple( String::format( "restore -- %s", asList( files ) ), projectDir ); |
| 222 | } |
| 223 | |
| 224 | Git::Result Git::restore( const std::string& file, const std::string& projectDir ) { |
| 225 | return gitSimple( String::format( "restore \"%s\"", file ), projectDir ); |