diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e2eed73 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +nixhome/.bashrc-custom \ No newline at end of file diff --git a/git-pull-all.bat b/git-pull-all.bat index f5cda6f..d0f4caa 100644 --- a/git-pull-all.bat +++ b/git-pull-all.bat @@ -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 ) diff --git a/git-pull-all.sh b/git-pull-all.sh index a469db6..18e8822 100755 --- a/git-pull-all.sh +++ b/git-pull-all.sh @@ -45,7 +45,7 @@ do then echo "git pulling [$FONPATH/$org/$repo]" cd $repo - git pull + git pull --all echo "" cd .. fi diff --git a/nixhome/.bashrc b/nixhome/.bashrc index c329834..faea1d8 100644 --- a/nixhome/.bashrc +++ b/nixhome/.bashrc @@ -80,6 +80,11 @@ case "$TERM" in ;; esac +if [ -f .bashrc-custom ] +then + . .bashrc-custom +fi + ################################################################################ # End Of File: "~/.bashrc" ################################################################################