From 06ba4aa1a24be8fbb3a16f9e509f1dad00208df4 Mon Sep 17 00:00:00 2001 From: Marc Vertes Date: Fri, 30 Sep 2022 12:13:54 +0200 Subject: update --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..36af6d0 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Dotfiles + +Configuration files, stored in a bare git repository. Avoid symlinks and extra tooling + +Use: + + git init --bare ~/dotfiles + alias dotfiles='git --git-dir=$HOME/dotfiles --work-tree=$HOME' + +Au lieu de +dotfiles config status.showUntrackedFiles no + cat ~/.gitignore : + * + +On other machine, to reconstruct: + git clone --bare git@bip.im:dotfiles dotfiles + alias dotfiles as above + dotfiles checkout +remove files in the way if necessary + +Manage one branch per computer if necessary. + +If a change is for all, do it on master, then: dotfiles merge master -- cgit v1.2.3 From 9f8cb54bd99b89a2f07bba4f4d1f761fd853b195 Mon Sep 17 00:00:00 2001 From: Marc Vertes Date: Fri, 30 Sep 2022 12:16:05 +0200 Subject: update --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 36af6d0..0c83b01 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,23 @@ Use: alias dotfiles='git --git-dir=$HOME/dotfiles --work-tree=$HOME' Au lieu de -dotfiles config status.showUntrackedFiles no - cat ~/.gitignore : + + dotfiles config status.showUntrackedFiles no + +`cat ~/.gitignore` : + * On other machine, to reconstruct: + git clone --bare git@bip.im:dotfiles dotfiles alias dotfiles as above dotfiles checkout + remove files in the way if necessary Manage one branch per computer if necessary. -If a change is for all, do it on master, then: dotfiles merge master +If a change is for all, do it on master, then: + + dotfiles merge master -- cgit v1.2.3