Git本地仓库关联远程仓库

Git 本地仓库关联远程仓库

1、建立远程仓库

2、初始化本地仓库

1
git init

3、修改git config

1
2
git config user.name "xxx"
git config user.email "xxx@163.com"

4、添加基础文件

1
echo "# bubble" >> README.md

5、提交代码并推送

1
2
3
4
5
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:xxx/bubble.git
git push -u origin main


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!