dotfiles/install/Readme.md

30 lines
576 B
Markdown
Raw Normal View History

2012-10-31 12:19:43 +00:00
# Dotfiles installer
Installs git, clones repository and symlinks dotfiles to your home directory
```bash
curl https://bitbucket.org/jacobkiers/dotfiles/raw/master/install/install.sh | bash
2012-10-31 12:19:43 +00:00
```
## Installing from subdomain
You can put it to subdomain on you hosting and use short path. For example:
```bash
curl dot.jacobkiers.net | bash
2012-10-31 12:19:43 +00:00
```
Copy install script to your public directory:
```bash
curl -O https://bitbucket.org/jacobkiers/dotfiles/raw/master/install/install.sh
2012-10-31 12:19:43 +00:00
```
And add to your `.htacess`:
```
RewriteEngine on
RewriteRule (.*) /install.sh [L]
```