Reputation: 8303
I'm using Github for windows for a non-github project and I am using its powershell prompt.
I'd like to configure visual studio to use the same prompt (via package manager).
I'd also like to not have to install poshgit separately and maintain 2 installations as the github one has pretty much the exact settings I want.
I've seen it is possible to modify the profile that nuget uses for its powershell prompt but I cant find where GH4W stores its settings for poshgit.
Is there an easy way to accomplish this?
Upvotes: 5
Views: 444
Reputation: 77610
Try putting this in your NuGet_profile.ps1
:
. (Resolve-Path "$env:LOCALAPPDATA\GitHub\shell.ps1")
. $env:github_posh_git\profile.example.ps1
Upvotes: 3
Reputation: 5703
I'd turn the problem sideways, so I would make GitHub for Windows use the same Powershell prompt that Visual Studio does. Based on my experiences with Visual Studio and with git, I think that would be the easier task and the task more likely to succeed.
Upvotes: 0