Visual Studio 2013, Git and Shelving

Need some help on how I can shelve uncommited changes in a Git repository using Visual Studio 2013. I come from PHPStorm where you can shelve uncommited changes on one branch, switch to another and unshelve.

However, I can't find/see how this can be done in Visual Studio. Could someone shed some light on this issue?

Just to clarify why this may be needed: I might be working on branch X, and then figure that I am the wrong branch and I should be on branch Y. I need to shelve all changes from branch X, switch to branch Y, unshelve changes and then commit.

Thanks.


In git the concept you're looking for is stash . You add your changes as if you are going to commit them, and you then stash them with git stash . After changing branches, you can git stash apply or git stash pop (with the former leaving the stash available for reuse).

I'm familiar with the shelf concept from Perforce, which has a useful difference from Git's stash -- where you can send a shelf to the server and share it with other people, you cannot do that with git. However, with git you can just create a branch with the stash and push that to the server, allowing others to merge it where it's needed.

Microsoft does not provide a way to use this feature.


Visual Studio 2013 Update 2不支持为git存储库搁置(称为在git中存储),但是您可以在存储库本身上使用第三方工具(我使用SourceTree)。


Maybe I showed up late to this one.

I use TortoiseGit for this... It works really well and can work alongside Visual Studio as it is just an explorer plugin.

https://tortoisegit.org/

链接地址: http://www.djcxy.com/p/27084.html

上一篇: 在Visual Studio 2013中禁用git

下一篇: Visual Studio 2013,Git和Shelving