Filedot Secret -
I'm assuming you're referring to "FileDot" and potentially looking for information on a service or product named FileDot, and perhaps something related to a "secret" feature or aspect of it. However, without more specific details, it's challenging to provide a precise and in-depth response.
Setup command (run once):
What is FileDot?
#!/bin/bash
cd ~
git clone --bare https://github.com/yourusername/dotfiles.git $HOME/.dotfiles
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
dotfiles checkout
if [ $? = 0 ]; then
echo "Checked out dotfiles.";
else
echo "Backing up existing dotfiles.";
mkdir -p .dotfiles-backup
dotfiles checkout 2>&1 | egrep "\s+\." | awk 'print $1' | xargs -I{} mv {} .dotfiles-backup/{}
dotfiles checkout
fi
dotfiles config status.showUntrackedFiles no
source ~/.bashrc