Change git clone method from SSH to HTTPS & update readme

This commit is contained in:
George Rawlinson 2016-10-23 20:09:43 +13:00
parent d77440d0aa
commit 5a38776a23
2 changed files with 15 additions and 5 deletions

View File

@ -31,7 +31,7 @@ npm:
nvim: nvim:
@stow -t ~/ nvim @stow -t ~/ nvim
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \ curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
@echo "Run :PlugInstall when nvim is first run!" @echo "Run :PlugInstall when nvim is first run!"
ssh: ssh:
@ -47,8 +47,8 @@ wallpapers:
@stow -t ~/ wallpapers @stow -t ~/ wallpapers
zsh: zsh:
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
git clone https://github.com/zsh-users/zsh-completions ~/.oh-my-zsh/custom/plugins/zsh-completions git clone https://github.com/zsh-users/zsh-completions.git ~/.oh-my-zsh/custom/plugins/zsh-completions
@stow -t ~/ zsh @stow -t ~/ zsh
clean: clean:

View File

@ -1,6 +1,6 @@
# dotfiles & system setup # dotfiles & system setup
```shell ```
git > global git config & aliases git > global git config & aliases
lftp > sftp management lftp > sftp management
npm > npm configuration (ha ha) npm > npm configuration (ha ha)
@ -16,8 +16,18 @@ zsh > shell, aliases and cool stuff
Clone repository, then setup as desired. Clone repository, then setup as desired.
Look at Makefile, or use GNU Stow directly. Look at [Makefile](Makefile), or use [GNU Stow][url-gnu-stow] directly.
## Further Reading
* [Mozilla OpenSSH security guidelines][url-mozilla-ssh]
* [Good read on securing OpenSSH][url-secure-shell]
## LICENSE ## LICENSE
The MIT License ([MIT](LICENSE.md)) The MIT License ([MIT](LICENSE.md))
[url-gnu-stow]:https://www.gnu.org/software/stow/
[url-mozilla-ssh]:https://wiki.mozilla.org/Security/Guidelines/OpenSSH
[url-secure-shell]:https://stribika.github.io/2015/01/04/secure-secure-shell.html