This commit is contained in:
陆柯 2021-12-16 20:23:54 +08:00
parent 135525c485
commit 063d40db36
4 changed files with 8 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
nixhome/.bashrc-custom

View File

@ -40,7 +40,7 @@ for /d %%o in (*) do (
if exist %%g\.git ( if exist %%g\.git (
pushd %%g pushd %%g
echo git pulling [%BASEDIR%\%%o\%%g] echo git pulling [%BASEDIR%\%%o\%%g]
git pull git pull --all
echo; echo;
popd popd
) )

View File

@ -45,7 +45,7 @@ do
then then
echo "git pulling [$FONPATH/$org/$repo]" echo "git pulling [$FONPATH/$org/$repo]"
cd $repo cd $repo
git pull git pull --all
echo "" echo ""
cd .. cd ..
fi fi

View File

@ -80,6 +80,11 @@ case "$TERM" in
;; ;;
esac esac
if [ -f .bashrc-custom ]
then
. .bashrc-custom
fi
################################################################################ ################################################################################
# End Of File: "~/.bashrc" # End Of File: "~/.bashrc"
################################################################################ ################################################################################