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 (
pushd %%g
echo git pulling [%BASEDIR%\%%o\%%g]
git pull
git pull --all
echo;
popd
)

View File

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

View File

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