| 209 | } |
| 210 | |
| 211 | Git::Result Git::add( std::vector<std::string> files, const std::string& projectDir ) { |
| 212 | return gitSimple( String::format( "add --force -- %s", asList( files ) ), projectDir ); |
| 213 | } |
| 214 | |
| 215 | Git::Result Git::stash( std::vector<std::string> files, const std::string& projectDir ) { |
| 216 | return gitSimple( String::format( "stash push --include-untracked -- %s", asList( files ) ), |