Skip to content

thesilas/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

$HOME in git via whitelisting. No symlinks, scripts, or dependencies, just git.

Requirements

How it works

Starting from scratch

~:$ git init
~:$ echo '*' > .gitignore

# now, you'll need to force-add files you want to track (-f force-adds ignored files)

~:$ git add -f .gitignore
~:$ git commit -m 'Ignore all via .gitignore'

~:$ git add -f .bashrc .tmux.conf .vimrc
~:$ git commit -m 'Add some dotfiles'

Checking out dotfiles on a new system

~:$ git init
~:$ git remote add origin https://github.com/thesilas/dotfiles
~:$ git remote update
~:$ git checkout -t origin/master [-f]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published