Can I perform `git pull` without password prompt but `git push` with password prompt? -
i have known can use ssh protocol in order perform git pull
& git push
without password prompt.
but want more convenient way. git pull
without password prompt git push
with password prompt?
the reason want preference:
- i want easiest way
git pull
code - i want confirmation before want
git push
yes. change push & pull remotes 2 different urls. if git remote -v
can change push url git remote set-url --push origin https://github.com/minshallj/wtf.git
use url don't have enter password (like git@...
) , 1 requires password push url (like https://...
)
Comments
Post a Comment