We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Readers may be curious how multiple setups (e.g., a setup per platform) can be supported by this workflow.
The text was updated successfully, but these errors were encountered:
git clone --bare $REPO_URL $HOME/.dotfiles alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' dotfiles config --local status.showUntrackedFiles no echo ".dotfiles" >> $HOME/.gitignore mkdir -p .dotfiles.bak \ && dotfiles checkout 2>&1 | egrep "^\s+" | awk {'print $1'} | \ xargs -I {} mv {} .dotfiles.bak \ && dotfiles checkout
git clone --mirror $REPO_URL $HOME/.dotfiles alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' dotfiles config --local status.showUntrackedFiles no echo ".dotfiles" >> $HOME/.gitignore mkdir -p .dotfiles.bak \ && dotfiles checkout 2>&1 | egrep "^\s+" | awk {'print $1'} | \ xargs -I {} mv {} .dotfiles.bak \ && dotfiles checkout
git init --separate-git-dir $HOME/.dotfiles git config --local status.showUntrackedFiles no git remote add origin $REPO_URL git fetch mkdir -p .dotfiles.bak \ && git checkout master 2>&1 | egrep "^\s+" | awk {'print $1'} | \ xargs -I {} mv {} .dotfiles.bak \ && git checkout master
.git
$HOME
Sorry, something went wrong.
No branches or pull requests
Readers may be curious how multiple setups (e.g., a setup per platform) can be supported by this workflow.
The text was updated successfully, but these errors were encountered: