我有一个github帐户,并在一年前创建了一些存储库。昨天,我的Ubuntu操作系统(14.04)通过格式化我的机器重新安装。我想安装git并连接到我现有的github帐户。
据我了解,我必须这样做
sudo apt-get install git
git config --global user.name="damon"
git config --global user.email="damon@somemail.com"
在此之后,我是否必须生成新的SSH密钥并将其添加到ssh-agent,并将此SSH密钥添加到我的github帐户? https://help.github.com/articles/generating-ssh-keys/页面显示了这一点。
还是我错过了别的什么?