Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 515 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 515 Bytes

Dotfiles

Using the dotfiles

git clone --bare [email protected]:bluebrown/cfg.git 
alias cfg='git --git-dir="$HOME/cfg.git/" --work-tree="$HOME"'
cfg checkout
dash .config/deps.sh

Creating your own

git init --bare ~/cfg
alias cfg='git --git-dir="$HOME/cfg.git/" --work-tree="$HOME"'
cfg remote add origin [email protected]:<your-user>/cfg.git
cfg add -f .myconfig
cfg commit -s
cfg push -u origin main

See Also