git_stash_save()
と同様に、変更を保存できますgit stash
。変更を元に戻す機能はありgit stash pop
ますか?
git_stash_foreach()
とが見えますgit_stash_drop()
。この機能を実現するためにそれらを使用する方法はありますか?
編集: nulltokenの回答に基づいて、次のコードが機能すると予想していました:
void tstStashPop ( const char * repo_path )
{
git_repository *repo;
git_commit * top_cmt;
git_oid saved_stash;
git_tree * top_tree;
git_signature *signature;
// open a repository
if ( git_repository_open(&repo, repo_path) != 0 )
{
assert(false);
}
else
{
// create a signature
git_signature_new(&signature, "no name", "no.name@gmail.com", 1323847743, 60);
if ( git_stash_save( &saved_stash, repo, signature,
"message for this stash", /*GIT_STASH_INCLUDE_UNTRACKED*/0)
!= GIT_ENOTFOUND )
{
// get the commit that was saved by git stash save
if ( git_commit_lookup( &top_cmt, repo, &saved_stash ) != 0 )
{
assert(false);
}
else
{
// get the tree for this commit
if ( git_commit_tree( &top_tree, top_cmt ) != 0 )
{
assert(false);
}
else
{
// checkout the tree
git_checkout_opts opts;
opts = GIT_CHECKOUT_OPTS_INIT;
opts.checkout_strategy = GIT_CHECKOUT_SAFE_CREATE;
if ( git_checkout_tree( repo, (git_object*)top_tree, &opts ) != 0 )
{
assert(false);
}
}
}
// remove the stashed commit
git_stash_drop( repo, 0 );
}
// free signature
git_signature_free(signature);
// free repo
git_repository_free(repo);
}
}
エラーは報告されていませんが、変更は復元されていません。git_stash_save()
動作し(メッセージは で表示されますgit stash list
)、git_stash_drop()
動作します。ただし、git_checkout_tree()
効果はありません。
また、解放する必要がtop_tree
ありtop_cmt
ますか?