Month: October 2025

Your local changes to the following files would be overwritten-Please commit your changes or stash them before you merge. Aborting

It looks like you’re trying to pull changes from a remote repository, but Git is preventing the pull because you have local changes that would be overwritten by the merge. Specifically, your  files has local changes that need to be handled before proceeding with the pull. To resolve this issue, you have a few options: Option […]

In a new terminal session, running git pull gives a ‘Public key denied’ error

Method 1: Login to Server using SSH and Type below command eval “$(ssh-agent -s)” — starts the SSH agent and sets environment variables like SSH_AUTH_SOCK. ssh-add ~/.ssh/tondemo_rsa — adds your private SSH key to the agent so it can authenticate automatically (e.g., with GitHub or your server). Method 2: Permanantly Fix Linux/OpenSSH Notes MacOs