You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to avoid #216 and using ssh key instead of login and password. I've tested the key with github and it works:
git clone something from github
Enter passphrase for key '~/.ssh/id_rsa':
I deleted rever directory before try. But rever requires the login and password:
$ cat rever.xsh | grep TAG
$TAG_REMOTE = '[email protected]:anki-code/xontrib-prompt-bar.git'
$TAG_TARGET = 'master'
$ rever check
No checks needed for tag activity
All CLI and import requirements met for push_tag activity
Initialized empty Git repository in ~/git/xontrib-prompt-bar/rever/git-have-push-perm/.git/
~/git/xontrib-prompt-bar/rever/git-have-push-perm ~/git/xontrib-prompt-bar
Switched to a new branch '__rever__'
[__rever__ (root-commit) d9dd83a] Checking rever permissions
Username for 'https://github.com': anki-code
Password for 'https://[email protected]':
fatal: Authentication failed for 'https://github.com/anki-code/xontrib-prompt-bar.git/'
# Because password auth disabled
What I'm doing wrong?
The text was updated successfully, but these errors were encountered:
In my case I checkout repo from https remote address then run rever to push using ssh.
I've found that you're checking remote address and ignore PUSH_TAG_REMOTE format. It's not so clean logic. The best way is to check the format and if it like git@<...>:<...>/<...>.git try to use ssh first.
Hi! This is my first try to use rever.
I'm trying to avoid #216 and using ssh key instead of login and password. I've tested the key with github and it works:
I deleted
rever
directory before try. But rever requires the login and password:What I'm doing wrong?
The text was updated successfully, but these errors were encountered: