MCPcopy Create free account
hub / github.com/SpartanJ/eepp / stash

Method stash

src/tools/ecode/plugins/git/git.cpp:215–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215Git::Result Git::stash( std::vector<std::string> files, const std::string& projectDir ) {
216 return gitSimple( String::format( "stash push --include-untracked -- %s", asList( files ) ),
217 projectDir );
218}
219
220Git::Result Git::restore( std::vector<std::string> files, const std::string& projectDir ) {
221 return gitSimple( String::format( "restore -- %s", asList( files ) ), projectDir );

Callers

nothing calls this directly

Calls 2

formatFunction · 0.85
asListFunction · 0.85

Tested by

no test coverage detected