💠dotfiles 1
A better way to manage your dotfiles (or any other non directory-specific files 2).
You will never have to put all your dotfiles into one folder or use symlinks ever again.
(The instructions below have been made to work on Linux operating systems, specifically on Ubuntu 22.04 along with the prerequisite of having Git installed on your system.)
mkdir $HOME/.dotfiles
git init --bare $HOME/.dotfiles
echo "alias dots='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'" >> $HOME/.bashrc
bash
dots config --local status.showUntrackedFiles no
- create a new repository on GitHub (or any other Git server hosting service) but do NOT include a
README.md
or any other files such as a license dots remote add origin https://github.com/<username>/<repository_name>.git
dots add <file/directory_name>
dots commit -m "Add/Update <file/directory_name(s)>"
dots push
3
dots add -u
dots commit -m "Update all files"
dots push
3
dots rm <file_name>
ordotfiles rm -r <directory_name>
dots commit -m "Remove <file/directory_name(s)>"
dots push
3
dots pull
echo "alias dots='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'" >> $HOME/.bashrc
echo '.dotfiles' >> .gitignore
3a.git clone --bare https://github.com/<username>/<repository_name>.git $HOME/.dotfiles
(general dotfiles repository)
3b.git clone --bare https://github.com/zahradnik-ondrej/dotfiles.git $HOME/.dotfiles
(this dotfiles repository)bash
dots checkout -f
dots config --local status.showUntrackedFiles no
bash
Footnotes
-
Inspired by a YouTube video from DistroTube - Git Bare Repository - A Better Way To Manage Dotfiles and a blog post by Nicola Paolucci - Dotfiles: Best Way to Store in a Bare Git Repository. ↩
-
While this approach mainly serves as a better way to manage dotfiles, there is nothing special about it so that it couldn't be used for other types of files. That means you could use this approach for backing up any kind of data such as documents (Word, PDF, etc.), media files (pictures, videos, music) or software, especially if you are hosting your own Git server or paying for one (that's mainly due to storage, security and privacy concerns when it comes to backing up your data this way). ↩
-
You might sometimes come across this or similar error message which prevents you from pushing (uploading) your dotfiles to the repository when you run the
dots push
command:To https://github.com/<username>/<repository_name>.git ! [rejected] main -> main (fetch first) error: failed to push some refs to 'https://github.com/<username>/<repository_name>.git' hint: Updates were rejected because the remote contains work that you do not have locally. This is usually caused by another repository pushing to the same ref. You may want to first integrate the remote changes (e.g., 'git pull ...') before pushing again. See the 'Note about fast-forwards' in 'git push --help' for details.
To solve this issue, simply run thedots pull
command which will then proceed to open your default text editor. You can then just exit the text editor (for nano:Ctrl + x
/ for emacs:Ctrl + x
followed byCtrl + c
) and run thedots push
command once again and everyting should be taken care of. ↩ ↩2 ↩3