什么时候应该使用git stash save而不是git stash push,反之亦然?
git stash save
git stash push
发布于 2017-06-22 00:50:45
git stash save接受单个非option参数-- stash消息。
git stash push接受带有选项-m的消息,并接受要作为参数存储的文件列表。
-m
https://stackoverflow.com/questions/44680028
相似问题