切换账号并推送代码需要执行以下步骤:
新建一个SSH密钥对(如果你之前没有创建过):
ssh-keygen -t rsa -C "your_email@example.com"
这里的your_email@example.com
应该替换为你在GitLab上账号的邮箱地址。将公钥添加到GitLab账号:
配置本地Git客户端:
git config --global user.name "Your Name"
git config --global user.email "your_email@example.com"
这里的 “Your Name” 和 “your_email@example.com” 分别应替换为你希望显示的用户名和GitLab账号的邮箱地址。克隆或配置你要推送代码的Git仓库:
git clone git@gitlab.com:your-username/your-repo.git
这里的 “your-username” 和 “your-repo” 分别应替换为你的GitLab账号用户名和仓库名称。git remote set-url origin git@gitlab.com:your-username/your-repo.git
推送代码:
git add .
git commit -m "Commit message"
git push origin master
这里的 “Commit message” 应该替换为你提交的信息。这样,你就可以在GitLab上切换账号并推送代码了。请确保你已经在GitLab上创建了相应的仓库,并具有推送代码的权限。