dotfiles/README.md

2.1 KiB

title date draft tags
Dotfiles With Git 2020-04-29T13:26:01+02:00 true
bash
git
dotfiles

Simple way to manage dotfiles with git

I use a very simple way to manage my dotfiles with git and some bash aliases. All you have to create a folder for your git repository in your home folder and initiate a bare git repository

mkdir "$HOME/.dotfiles"
git init --bare "$HOME/.dotfiles"

Then create an alias so you don't have to write a long command each time you want to add a file or configure your git repository, don't forget to add that alias to $HOME/.alias

alias dotf='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'

so, that alias is calling git and sets the repository as well as working directory and it can be called from what ever path you currently be in.

The next thing we need to do is to configure the repository to not show untracked files and only care about the files we specifically want to manage.

dotf config --local status.showUntrackedFiles no

Now you just use the dotfiles alias for git to add files, commit changes, etc, etc

dotf add .alias .bashrc
dotf commit -m "Added .alias and .bashrc"

To show the status of the repository

dotf status

if you want to add some bash completion to dotf you can just add the following line to your .bashrc

[[ $(type -t __git_complete) == function ]] && __git_complete dotf __git_main

I use my functions defined in dotf.sh

If you want you can add a remote repository make sure that it's secure if you manage sensitive information.

dotf remote add origin <username>@git.domain.tld/dotfiles.git
dotf push

Adding new computer to existing dotfile repo

mkdir $HOME/.dotfiles
alias dotf='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
dotf init
rm .inputrc
rm .bashrc
git remote add origin https://git.rre.nu/jonas/dotfiles.git
dotf fetch origin
dotf checkout main

To initialize my desktop run

bash <(curl -sL https://git.rre.nu/jonas/dotfiles/raw/branch/master/bin/initDesktop)