Git本地仓库关联远程仓库 Git 本地仓库关联远程仓库1、建立远程仓库2、初始化本地仓库1git init 3、修改git config12git config user.name "xxx"git config user.email "xxx@163.com" 4、添加基础文件1echo "# bubble" >> README.md 5、提交代码并推送12345git add README.mdgit commit -m "first commit"git branch -M maingit remote add origin git@github.com:xxx/bubble.gitgit push -u origin main 基础工具 Git Git 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处! Git 常见错误及解决办法 上一篇 Golang 代码编译问题 下一篇 Please enable JavaScript to view the comments