ubuntu连接github远程库
时间: 2023-09-27 15:10:46 浏览: 113
使用git创建密钥对使之连接github远程仓库,并创建本地仓库
你需要在终端输入以下命令:
1. 首先安装git:sudo apt-get install git
2. 然后设置你的用户名和邮箱:git config --global user.name "Your Name"
git config --global user.email "youremail@domain.com"
3. 将本地的一个项目文件夹初始化为Git仓库:git init
4. 将本地仓库与GitHub上的仓库关联:git remote add origin https://github.com/username/repo.git
5. 拉取GitHub上的代码:git pull origin master
6. 推送你的修改到GitHub上:git push origin master
阅读全文