-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tab completion for git and docker
- Loading branch information
1 parent
34366e8
commit 0a4e448
Showing
4 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# install docker tab completion (https://github.com/samneirinck/posh-docker) | ||
Push-Location Documents | ||
git clone https://github.com/samneirinck/posh-docker | ||
cd posh-docker | ||
. .\install.ps1 | ||
Pop-Location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# install git tab completion (https://github.com/dahlbyk/posh-git) | ||
#Set-PSRepository -Name PSGallery -InstallationPolicy Trusted | ||
#Install-Module posh-git -Scope CurrentUser | ||
Push-Location Documents | ||
git clone https://github.com/dahlbyk/posh-git | ||
cd posh-git | ||
. .\install.ps1 | ||
Pop-Location |