projects
/
dotfiles
/
scripts.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add tiny helper to help sync dotfiles
[dotfiles/scripts.git]
/
update-dotfiles
1
#!/bin/sh
2
3
dotfiles_location="$HOME/.dotfiles"
4
5
for i in $(ls "$dotfiles_location"); do
6
echo -n "Updating $i: "
7
cd "$dotfiles_location"/"$i"
8
git pull
9
done