git 新建仓库 与远程关联

1.新建本地仓库

git init

2.添加所有文件追踪

git add .

3.提交修改

git commit -m "message"

4.添加远程仓库

git remote add origin --address

5.推送

git push --set-upstream origin master

你可能感兴趣的:(git 新建仓库 与远程关联)