我一直认为你可以通过做来给一个存储命名git stash save stashname,你以后可以通过做来申请git stash apply stashname。但似乎在这种情况下,所发生的一切stashname都将用作存储描述。
git stash save stashname
git stash apply stashname
stashname
有没有办法真正命名一个藏匿处?如果没有,您会推荐什么来实现等效功能?本质上,我有一个小储藏室,我想定期申请,但不想总是寻找git stash list它的实际储藏室编号。
git stash list
这就是你的做法:
git stash push -m "my_stash"
"my_stash"存储名称在哪里。
"my_stash"
一些更有用的事情要知道:所有的存储都存储在一个堆栈中。类型:
这将列出你所有的藏匿处。
要应用存储并将其从存储堆栈中删除,请键入:
git stash pop stash@{n}
要应用存储并将其保存在存储堆栈中,请键入:
git stash apply stash@{n}
n隐藏更改的索引在哪里。
n
请注意,您可以使用存储名称应用存储并将其保存在堆栈中:
git stash apply my_stash_name