PT
Проблема на клонировании или на push или на выполнении другой команды?
Size: a a a
PT
pl
❯ git push -u origin master # можно и без -u
Username for 'https://github.com':
Password for 'https://peach-lasagna@github.com':
и так каждый раз. Можно как-то этого избежать? я по ssh коннекчусь к гитхабу. P
PT
P
P
❯ git push -u origin master # можно и без -u
Username for 'https://github.com':
Password for 'https://peach-lasagna@github.com':
и так каждый раз. Можно как-то этого избежать? я по ssh коннекчусь к гитхабу. git remote -v и посмотрев адреса, они должны начинаться с git@pl
❯ git remote -vхм
origin https://github.com/peach-lasagna/repo.git (fetch)
origin https://github.com/peach-lasagna/repo.git (push)
pl
P
git remote set-url origin путьPT
PT
pl
git remote set-url origin путь❯ git remote set-url origin git@github.com:peach-lasagna/lang-train.git
❯ git push origin master
Username for 'https://github.com':pl
P
P
pl
❯ git remote -v
origin https://github.com/peach-lasagna/lang-train.git (fetch)
origin https://github.com/peach-lasagna/lang-train.git (push)pl
Dv
❯ git push -u origin master # можно и без -u
Username for 'https://github.com':
Password for 'https://peach-lasagna@github.com':
и так каждый раз. Можно как-то этого избежать? я по ssh коннекчусь к гитхабу. Dv
PT