-
-
Notifications
You must be signed in to change notification settings - Fork 809
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removes ssh utils #585
Removes ssh utils #585
Conversation
I'll take a closer look later today, but an immediate observation: what if we moved the |
Nevermind. I really don't think we want to invest anything in making the SSH organization better here. |
@@ -13,7 +13,6 @@ | |||
foreach($line in $oldProfile) { | |||
if ($line -like '*PoshGitPrompt*') { continue; } | |||
if ($line -like '*Load posh-git example profile*') { continue; } | |||
if ($line -like '*Start-SshAgent*') { continue; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hrm... I was going to say we should leave this, to clean up after old versions, but this uninstall script will only be used for 1.0+ which will have no responsibility for Start-SshAgent
...so I think it's fine to go? Thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes I think it's fine to go
Still pondering this. I wonder if it's worth making any SSH fixes at all here in this repo, rather than just spawning a new repo? From a preservation-of-history standpoint, perhaps the easiest path forward would be to actually make posh-ssh a fork of the posh-git repo at whatever point we consider the v0 fixes "done". Delete all the Git-only files, rename/prune the module, new readme/changelog, fix up some code and we're good to go. Thoughts? |
I like that idea, preserving the history is good. I'll keep all the fixes in this repo for now until we decide to go ahead with the separation. |
1b157e9
to
d9f760c
Compare
@dahlbyk I've removed the commits that create posh-ssh and squashed the destructive ones. I think this should be good to go - let me know if you'd like anything changed. |
@dahlbyk Is there anything else you'd like me to do for this, or are you happy for me to merge it to master? |
Removes ssh utils and associated tests.