Split
This commit is contained in:
parent
1085378130
commit
79e42c2f64
1 changed files with 7 additions and 2 deletions
|
@ -31,9 +31,14 @@ command_add() {
|
||||||
echo "$file added in $DOTFILES_DIR/$savepoint"
|
echo "$file added in $DOTFILES_DIR/$savepoint"
|
||||||
}
|
}
|
||||||
|
|
||||||
command_sync() {
|
command_pull() {
|
||||||
cd $DOTFILES_DIR
|
cd $DOTFILES_DIR
|
||||||
git push; git pull
|
git pull
|
||||||
|
}
|
||||||
|
|
||||||
|
command_push() {
|
||||||
|
cd $DOTFILES_DIR
|
||||||
|
git push
|
||||||
}
|
}
|
||||||
|
|
||||||
command_help() {
|
command_help() {
|
||||||
|
|
Loading…
Reference in a new issue