Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iamvery/dotfiles

~/
https://github.com/iamvery/dotfiles

Last synced: about 2 months ago
JSON representation

~/

Awesome Lists containing this project

README

        

# ~/

My home directory is a git repository. You're looking at it. This complicates
installation just a bit because you can't simply clone the repository as your
home directly likely already exists. For that reason, you must init an empty
repo, add the remote, and pull down all the goodness. Enjoy!

## Installation

```bash
$ git init
$ git remote add origin [email protected]:iamvery/dotfiles.git
$ git pull origin master
$ git submodule init
$ git submodule update
$ bin/bootstrap
```

## Updating

```bash
$ git pull
$ git submodule foreach git pull origin master
```