Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cenkalti/dotfiles
dotfiles management with git
https://github.com/cenkalti/dotfiles
dotfiles
Last synced: 2 months ago
JSON representation
dotfiles management with git
- Host: GitHub
- URL: https://github.com/cenkalti/dotfiles
- Owner: cenkalti
- Created: 2011-03-10T10:11:25.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T20:09:29.000Z (8 months ago)
- Last Synced: 2024-05-22T20:54:25.890Z (8 months ago)
- Topics: dotfiles
- Language: Lua
- Homepage:
- Size: 1.88 MB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cenkalti's dotfiles
## Installation
Clone using following command:
```sh
export REPO="[email protected]:cenkalti/dotfiles"
# for read-only access
# export REPO="https://github.com/cenkalti/dotfiles.git"
curl 'https://raw.githubusercontent.com/cenkalti/dotfiles/master/.install.sh' | bash
```Add this to your `.bashrc`/`.zshrc` file:
```sh
alias dotfiles='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
```Checkout files:
```sh
dotfiles reset --hard
```## Usage
Use `dotfiles` command instead of `git`:
```sh
dotfiles pull
dotfiles add .vimrc
dotfiles commit -m "add .vimrc file"
dotfiles push
```