diff options
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -7,15 +7,15 @@ A Git repository to track my personal GNU/Linux dotfiles. ### Installation ```bash - cd ~ # switch to home folder - git clone --bare https://cgit.xengineering.eu/dotfiles # clone the bare repository - git --git-dir=$HOME/dotfiles.git/ --work-tree=$HOME checkout # checkout dotfiles to your home - # (append '-f' to overwrite local ones) + cd ~ # switch to home folder + git clone --bare https://cgit.xengineering.eu/dotfiles # clone the bare repository + git --git-dir=$HOME/dotfiles.git/ --work-tree=$HOME checkout # checkout dotfiles to your home + # (append '-f' to overwrite local ones) source ~/.bashrc # enable configuration for current shell ``` ### Update ```bash - dotfiles pull + dotfiles pull ``` |