Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 674 Bytes

README.md

File metadata and controls

40 lines (28 loc) · 674 Bytes

Adarsh's dotfiles

Flow:

  • Fork this repo.
  • Clone your fork.
  • Install.
  • Track dotfiles.
  • Customize in master.
  • Update.

Install

From your cloned directory:

./install.sh

This will create symlinks for all config files in your home directory. You can safely run this file multiple times to update.

Track adarshpandit/dotfiles

One time:

git remote add upstream git@github.com:adarshpandit/dotfiles.git
git fetch upstream
git checkout -b upstream upstream/master

Update

Each time you want to update:

git checkout upstream
git pull
git checkout master
git rebase upstream