首页 > 代码库 > git本地仓库关联远程仓库

git本地仓库关联远程仓库

1. git init

2. git add .

3. git commit -am "###"      -------以上3步只是本地提交

4.git remote add origin git@xx.xx.xx.xx:repos/xxx/xxx/xxx.git

5.git push origin 本地分支:远程分支

git本地仓库关联远程仓库