We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73c8611 commit 767c33bCopy full SHA for 767c33b
CHANGELOG.md
@@ -1,6 +1,10 @@
1
# Changelog
2
3
### master
4
+- change the way plugin name is expanded. It now uses the http username
5
+ and password by default, like this: `https://git::@github.com/`. This prevents
6
+ username and password prompt (and subsequently tmux install hanging) with old
7
+ git versions. Fixes #7.
8
9
### v1.2.0, 2014-11-20
10
- refactor tests so they can be used on travis
scripts/install_plugins.sh
@@ -16,7 +16,7 @@ clone() {
16
clone_plugin() {
17
local plugin=$1
18
clone "$plugin" ||
19
- clone "https://github.com/$plugin"
+ clone "https://git::@github.com/$plugin"
20
}
21
22
# pull new changes or clone plugin
0 commit comments