Git关联远程仓库

Posted wintertone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git关联远程仓库相关的知识,希望对你有一定的参考价值。

#git初始化
git init

#全局级配置,如果没有仓库级别的特殊配置,默认读取这个配置
git config --global user.name "name"
git config --global user.email "email"

#仓库级配置,一般一个项目配置一次
git config user.name "name"
git config user.email "email"

#添加文件
git add .

#commit
git commit -m "备注"

#设置remote地址
git remote add origin https://github.com/***/***.git

#把本地仓库分支master内容推送到元仓库去,第一次推送master分支时,加上了 –u参数,Git不但会把本地的master分支内容推送的远程新的master分支,还会把本地的master分支和远程的master分支关联起来
git push -u origin master

#push
git push origin master

 

以上是关于Git关联远程仓库的主要内容,如果未能解决你的问题,请参考以下文章

本地仓库关联远程仓库git操作

git 本地仓库与远程仓库关联

使用Git上传代码到远程仓库

git 远程仓库与本地项目关联

git 远程仓库中拉取代码到本地

如何将本地代码提交到多个远程仓库