1 Git

create ssh key in local laptop upload the public key to the remote git repository

1.0.0.1 fatal: unable to access ‘https://github.com/…’: SSL certificate problem: unable to get local issuer certificate

The following command will by pass the SSL certificate verification

git config --global http.sslVerify false

1.1 delete unpushed git commits

# Delete the most recent commit, keeping the work you've done:
git reset --soft HEAD~1

# Delete the most recent commit, destroying the work you've done:
git reset --hard HEAD~1

1.2 Unset git proxy

git config --global --unset http.proxy
git config --global --unset https.proxy

2 Can not find repository

Eclipse -> preferences > Maven -> User setting

Update User Setting file location

C:\Users\xxxxwag\.m2\repository
Home Page