From a52a643c90ced1d8507bec0cc1b38c20d0138c5b Mon Sep 17 00:00:00 2001 From: wenfei Date: Tue, 21 Oct 2025 15:02:17 +0800 Subject: [PATCH] =?UTF-8?q?git=E6=8E=A8=E9=80=81=E5=A4=B1=E8=B4=A5,?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=A4=AA=E5=A4=9A=E8=BF=87=E6=88=96=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E8=BF=87=E5=A4=A7=EF=BC=9Afatal:=20the=20remote=20end?= =?UTF-8?q?=20hung=20up=20unexpectedly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- maven_install.sh | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/maven_install.sh b/maven_install.sh index a91b7cf..6a91089 100644 --- a/maven_install.sh +++ b/maven_install.sh @@ -9,5 +9,18 @@ mvn install:install-file -Dfile=/Users/admin/ojdbc6.jar -DgroupId=com.oracle -Da mvn install:install-file -Dfile=C:\Users\Administrator\ojdbc6.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.1.0 -Dpackaging=jar -maven查看依赖树命令 -mvn dependency:tree \ No newline at end of file + + +#git推送失败,文件太多过或文件过大:fatal: the remote end hung up unexpectedly +git config http.postBuffer 524288000 + +#取消每次git拉取代码时都需要输入帐号密码 +#进入git项目目录,输入 +git config --global credential.helper store +#在开发工具中拉取或提交一次代码,输入一次用户名和密码,会自动保存git帐号 +#密码,以后就不需要再输入了 + + + +#maven查看依赖树命令 +mvn dependency:tree