Search This Blog

Showing posts with label line. Show all posts
Showing posts with label line. Show all posts

Friday, October 3, 2025

git push hangs after Total line (Total 7 (delta 3), reused 0 (delta 0), pack-reused 0 after no response)

 After git Commit -a -m "message"

    git config --global http.postBuffer 157286400

    git push   or  git push -u origin main



Wednesday, January 22, 2020

Java CMD -D arguments Custom

Note your java class or jar name should be at last and not first before -D.

Ex:
YES = java -jar -Dfiles=c1 -Dexcludes=va2 filename.jar
NO = java -jar filename.jar -Dfiles=c1 -Dexcludes=va2


In Program
Properties systemProperties = System.getProperties();
System.out.println( systemProperties.get ( "files" ) );
System.out.println( systemProperties.get ( "excludes" ) );


Hit Counter


View My Stats