.github/workflows | ||
helper | ||
scripts | ||
tests | ||
.travis.yml | ||
buildspec.yml | ||
Dockerfile | ||
dotbare | ||
LICENSE | ||
README.md | ||
shellcheck.sh |
dotbare
Introduction
dotbare is a command line utility to help you manage your dotfiles. It wraps around git bare repository and heavily utilise fzf for better user expereince. It is inspired by forgit, a git wrapper that utilise fzf for interactive expereince. dotbare uses a different implementation approach and focuses on managing and interacting with your dotfiles. Don't worry about migration if you have a symlink/GNU stow setup, you can easily integrate dotbare with them.
Pros:
- No symlink
- Simple setup/remove
- Customization
- Minimal dependency
- Easy migration
- Flat learning curve
- Manage dotfiles in any directory
- Integration with symlink/GNU stow setup
You could find out how git bare repository could be used for managing dotfiles here. Or a video explanation that helped me to get started. If you currently is using symlink/GNU stow setup, checkout how to integrate dotbare with them here.
Why
It has always been a struggle for me to get started with managing dotfiles using version control, as some other tools like "gnu stow" really scares me off with all the symlinks, until I found out about using git bare repository for managing dotfiles, zero symlinks, minimal setup required and you keep your dotfiles at the location they should be.
However, it has always lack some interactive expereince as it does not provide any auto completion on git commands nor file paths by default. It is also a pain when migrating the setup over to another system as you will have to manully resolve all the git checkout issues.
dotbare solves the above problems by providing a series of scripts starts with a prefix f (e.g. dotbare fadd, dotbare flog etc) that will enable a interactive expereince by processing all the git information from your bare repository and display it through fzf. dotbare also comes with the ability to migrate easily to other systems with one single command without having user to do any extra work.
Getting started
Install
- Clone the repository (change ~/.dotbare to the location of your preference)
git clone https://github.com/kazhala/dotbare.git ~/.dotbare
- Add dotbare to your PATH (below is only an example, put PATH into your appropriate shellrc file,
$HOME/.zshrc
etc)
# echo "PATH=$PATH:$HOME/.dotbare" >> "$HOME"/.bashrc
# echo "PATH=$PATH:$HOME/.dotbare" >> "$HOME"/.zshrc
PATH=$PATH:$HOME/.dotbare
- Or you could create a alias which point to dotbare executable
alias dotbare="$HOME/.dotbare/dotbare"
Dependencies
- Required dependency
- fzf
- bash(You don't need to run bash, but dotbare does require you have bash in your system)
- Optional dependency
- tree (Will provide a directory tree view when finding directory)
# if you are on macos brew install tree
- tree (Will provide a directory tree view when finding directory)
Setup
- init git bare repository
Note: by default,
dotbare finit
will set up a bare repo in $HOME/.cfg, to customize location and various other settings, checkout customization
dotbare finit
- add dotfiles you want to track
Treat dotbare as normal
git
commands. For interactive commands, check out commands
dotbare fadd -f
# or
dotbare add [FIELNAME]
# add entire repository like .config
dotbare fadd -d
# or
dotbare add [DIRECTORY]
- commit changes and push to remote
dotbare commit -m "First commit"
dotbare remote add origin [URL]
dotbare push -u origin master
Migration
Migrating from normal git bare repository
- follow the steps in install to install dotbare
- check your current alias of git bare reference
# Below is an example alias, check yours for reference
alias config=/usr/bin/git --git-dir=$HOME/.cfg --work-tree=$HOME
- set env variable for dotbare
export DOTBARE_DIR="$HOME/.cfg"
export DOTBARE_TREE="$HOME"
-
remove the origianl alias and use dotbare the same except with super power
-
optionally you could alias config to dotbare so you keep your muscle memory
alias config=dotbare
Migrating from a generic symlink setup or GNU stow
If you already have a symlink setup either custom or with GNU stow. You could either integrate dotbare with your current set up or do a complete migration.
Keep your current setup but integrate dotbare
- follow the steps in install to install dotbare
- set environment variable so that dotbare knows where to look for git information
# e.g. I have all my dotfiles stored in folder $HOME/.myworld and symlinks all of them to appropriate location.
# export DOTBARE_DIR="$HOME/.myworld/.git"
# export DOTBARE_TREE="$HOME/.myworld"
export DOTBARE_DIR=<Path to your .git directory>
export DOTBARE_TREE=<Path to directory which contains all your dotfiles>
- Run dotbare anywhere in your system
- Note: with this method, you do not run
dotbare finit -u [URL]
when migrating to new system, you will do your normal migration steps and then do the above step.
Complete migration
I haven't used GNU stow or any symlink setup, but I do recommand keep your current setup
and integrate with dotbare. If you are really happy with dotbare
, as long as your remote
repository resembles the structure of your home holder (reference what I mean in my repo),
simply run the command below.
# Disclainmer: I have not test this with GNU stow, migrate in this way with caution.
# I recommand you test this migration in docker, see #Test-it-in-docker
dotbare finit -u [URL]
Migrating dotbare to a new system
- follow the steps in install to install dotbare
- Optionallly set env variable to customize dotbare location. Checkout customization
export DOTBARE_DIR="$HOME/.cfg"
export DOTBARE_TREE="$HOME"
- give dotbare your remote URL and let it handle the rest
dotbare finit -u https://github.com/kazhala/dotfiles.git
Test it in docker
I stronly suggest you give dotbare a try in docker, especially when it comes to first time migration.
docker pull kazhala/dotbare:latest
docker container run -it --rm --name dotbare kazhala/dotbare:latest
Customization
dotbare could be customized through modification of env variables.
Note: customization of fzf is not covered here, you should checkout their wiki.
DOTBARE_DIR
This is the location of the bare repository, dotbare will look for this directory and query git information or it will create this directory when initializing dotbare. Change this to location or rename the directory to your liking.
If you are using symlink/GNU stow setup, set this variable point to your .git folder in your working directory of your dotfiles.
# Default
DOTBARE_DIR="$HOME/.cfg"
DOTBARE_TREE
This is the working tree for the git bare repository, meaning this is where the version control will take place. I don't recommand changing this one unless ALL of your config file is in something like $XDG_CONFIG_HOME or if you are using symlink/GNU stow setup, set this variable to point to the folder contains your actual dotfiles.
# Default
DOTBARE_TREE="$HOME"
DOTBARE_BACKUP
This variable is used to determine where to store the backup of your files. It is used
mainly by dotbare fbackup
which will back up all of your tracked dotfiles into this location.
It is also used by dotbare finit -u [URL]
, when there is checkout conflict, dotbare will
automatically backup conflicted files to this location. You probably shouldn't change this
location.
# Default
# 2. If XDG_DATA_HOME exist, use XDG_DATA_HOME/dotbare
# 3. otherwise, use $HOME/.local/share/dotbare
DOTBARE_BACKUP="${XDG_DATA_HOME:-$HOME/.local/share}/dotbare"
EDITOR
This is probably already set in your ENV. dotbare uses this variable to determine
which editor to use when running dotbare fedit
.
# Default
EDITOR="vim"
DOTBARE_KEY
This variable set default keybinds for fzf in dotbare. You could checkout a list of keybinds to set here.
# Default
DOTBARE_KEY="
--bind=alt-a:toggle-all # toggle all selection
--bind=alt-j:jump # label jump mode, sort of like easymotion
--bind=alt-0:top # set cursor back to top
--bind=alt-s:toggle-sort # toggle sorting
--bind=alt-t:toggle-preview # toggle preview
"
DOTBARE_FZF_DEFAULT_OPTS
Customize fzf settings for dotbare. This is useful when you want a different fzf behavior from your normal system fzf settings.
# Default is unset
# More settings checkout fzf man page and their wiki
# You could also take a look at my fzf config
# https://github.com/kazhala/dotfiles/blob/5507a2dea4f4a420e6d65a423abaa247521f89a8/.zshrc#L56
Commands
dotbare doesn't have a man page yet, will come later, for help, type dotbare [COMMAND] -h
Checkout all available scripts and their help manual
# run dotbare without any arguments
dotbare
# or checkout help for dotbare
dotbare -h
dotbare help
# for normal git help
dotbare --help
fedit
List all tracked dotfiles and edit the selected file through $EDITOR, it also support edit commits through interactive rebase.
fadd
Stage modified files, stage new file or directory interactivly through fzf.
By default dotbare fadd
will list modified files and stage them on selection.
freset
Reset/unstage file, reset HEAD back to certain commits and reset certain file back to certain
commits. Demo only shows unstaging files, detailed usage checkout dotbare freset -h
.
fcheckout
Checkout files/commit/branch interactivly, default behavior is to checkout files back to HEAD (Reset file changes back to HEAD).
flog
Interactive log viewer that will prompt you with a menu after selecting a commit. Allows edit, reset, revert and checkout the selected commits.
fstash
View and manage your stash interactivly. Pass -p
flag for pop
, otherwise by default,
stash apply
is used under the hood. Pass -d
flag for deleting a stash.
fbackup
Backup all of the tracked dotfiles to DOTBARE_BACKUP directory. This is used also by
dotbare finit -u [URL]
for backing up conflicted checkout files.
fstat
Interactively toggle stage/unstage of files. This is less used compare to dotbare fadd
,
it might get deprecated.
finit
Initialise dotbare with a bare repository or add -u [URL] flag for migrating current dotfiles to a new system.
Note: do not use this command if you are using symlink/GNU stow.
funtrack
Stop tracking the selected git files. It could also be used to temporarily stop tracking changes for files and then later on resume tracking changes.
Note: This command has severe limitations.
By default, selected files are permanently untracked starting from next commit.
It will not remove it from history. And if your other system pull down the new commit,
the untracked files on the other system will actually get removed by git. This is a limitation
with git, to overcome this, after untracking the files, run dotbare fbackup
to backup the files.
After pulling new changes, move the deleted files from backup back to their original position.
More discussions here.
dotbare funtrack
does come with capabilities to temporarily untrack files, which will not
actually remove the untracked files from other system. However, this is NOT recommanded
way to untrack files, explained here.
fupgrade
Update dotbare to the latest version in master. It basically just pull down changes from master, except you don't have to cd into dotbare directory, you can run this command any where.
Background
dotbare was initially part of my personal scripts, however as the number of scripts grows, I feel like is more appropriate to make a dedicated project for it. I've just started scripting for a few months, so there must be a lot of improvements that could be made, please help me out by firing up issues and any PR is welcome.
Testing
dotbare is unit tested on a best effort due the nature of fzf which require human input. Some functions may have a lot more coverage than others, so please fire up issues if something went wrong. dotbare uses bats to test individual functions.
I've added AWSCodeBuild to CI/CD just for my personal practice, if you are interested in what's happening in AWSCodeBuild you could checkout my cloudformation template.
Contributing
Please help me out by pointing out things that I could improve, as I said, I've only been scripting for a few months and are still adapting many new things every day. PR are always welcome and please fire up issues if something went wrong.
Leave a star if possible :)
Coming up
- Command line completion for dotbare commands
- Man page
- Command line completion for git commands?
- Installation method