我有一个 beaglebone,我在不久前(当我第一次学习 git 时)设置了一个用于特定 github 帐户的 ssh 密钥。该帐户是我们公司的主帐户。许多人直接在 beaglebone 上工作,并直接从 beaglebone 推送到 github。我想更改设置,以便每当有人想要提交或推送到 github 时,都会询问他们的用户名。
我最近的提交和推送看起来像这样......你会看到我没有输入用户名的选项,只有我们公司主帐户的密码。
root@beaglebone:/var/lib/cloud9/pypos# git commit -a -m "class restructured and passing the new updated test script"
[class_restructure 1db2e33] class restructured and passing the new updated test script
2 files changed, 14 insertions(+), 10 deletions(-)
root@beaglebone:/var/lib/cloud9/pypos# git push origin class_restructure
Enter passphrase for key '/home/root/.ssh/id_rsa':
Counting objects: 7, done.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 531 bytes, done.
Total 4 (delta 3), reused 0 (delta 0)
To git@github.com:FarmDesign/pypos.git
83831a8..1db2e33 class_restructure -> class_restructure
root@beaglebone:/var/lib/cloud9/pypos#