BalenaDash ssh key not working in windows

I am having trouble pushing code for BalenaDash to my Rip3 using powershell in windows 10. I have searched, tried many suggestions and still no progress. How best to move forward?

checking the remote

PS C:\Users\djlemas\balena-dash> git remote show origin

  • remote origin
    Fetch URL: https://github.com/balena-io-projects/balena-dash.git
    Push URL: https://github.com/balena-io-projects/balena-dash.git
    HEAD branch: master
    Remote branches:
    bump-wpe-version tracked
    detect-touch tracked
    fix tracked
    fix-youtube tracked
    master tracked
    photos tracked
    photos-build-6beb9fea3e5ac9589369b1c909d16f3bbf746bf4 tracked
    photos_v2 tracked
    shuffle tracked
    simple-example tracked
    timezone tracked
    timezone-build-b13270d2d3f5846993e5beab8756e2a76327cb0e tracked
    web-ui tracked
    Local branch configured for ‘git pull’:
    master merges with remote master
    Local ref configured for ‘git push’:
    master pushes to master (fast-forwardable)

trying to push to master

PS C:\Users\djlemas\balena-dash> git push balena master

    ############################################################################

    None of the supplied SSH keys matched a known key for user `gh_dlemas`

    Known ssh key fingerprints for `gh_dlemas`:
            *[number remove]

    Please make sure you've configured your keys correctly.
    https://balena.io/docs/getting-started/#adding-an-ssh-key

    ############################################################################

gh_dlemas@git.balena-cloud.com: Permission denied (publickey,keyboard-interactive).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Hello, it seems you don’t have a matching SSH key on balenaCloud. Did you follow the instructions as per https://balena.io/docs/getting-started/#adding-an-ssh-key ?

If you’d rather not setup SSH keys, you could install the balena-cli and use balena push instead.

Thanks. I made sure my new ssh was added balenacloud. When I re-ran the code I received the following code:

To git.balena-cloud.com:gh_dlemas/balenadash.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to ‘gh_dlemas@git.balena-cloud.com:gh_dlemas/balenadash.git’
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., ‘git pull …’) before pushing again.
hint: See the ‘Note about fast-forwards’ in ‘git push --help’ for details.

Is that output the result of running “git push balena master”? If so, the most common cause of that error is that your local copy of the repository got out of sync with the remote repository. If you are happy to overwrite the remote copy with the contents of the local copy, you can add the -f command-line option to “force push” the local copy:

git push -f balena master