Many changes...

This commit is contained in:
z3rOR0ne 2022-07-27 05:09:14 -07:00
parent 5f9bd1cd3a
commit a20d06652a
3 changed files with 11 additions and 7 deletions

View file

@ -292,8 +292,13 @@ else
echo "(doesn't apply to gpg or ssh)${txtwhite}"
git config credential.helper 'cache --timeout=3600';
git config advice.addEmptyPathspec false;
git add $modified $newfiles ;
git add $modified $newfiles;
fi
if [[ $deleted ]] ; then
git rm $deleted;
fi
# commits the user's message (multi-word supported)
git commit -m "$gitmoji $cmessage" ;