美文网首页
Github创建远程仓库

Github创建远程仓库

作者: 沈念一 | 来源:发表于2020-05-03 09:50 被阅读0次
  • 1、登录Github,创建存储仓库


    image.png
  • 2、本地文件夹中执行如下命令,创建README.md,并和远程仓库建立关联(或者在github网页上,通过create new file来创建README.md,如果通过这种方法,便可直接在github网页上创建dev分支,然后clone到本地)
echo "# axiosPackage" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/Amanda-wang-belle/axiosPackage.git
git push -u origin master
                
  • 3、然后在主页便可看到


    image.png
  • 5、查看本地分支
git branch
image.png
  • 6、查看远程分支
git branch -r
image.png
  • 7、查看所有分支
git branch -a
image.png
  • 8、创建并切换到dev分支
git branch dev
git checkout dev
或者
git checkout -b dev
image.png
  • 9、将新分支push到github上
git push -u origin dev
  • 10、将项目框架代码拖入到此文件夹下


    image.png
  • 11、将所有本地文件添加到到待处理待添加状态
git add .
  • 12、提交文件(可添加注释)
git commit -m "项目框架"
  • 13、切换到需要合并到的分支(master)
git checkout master
  • 14、推送到远程仓库
git merge dev 合并dev
git push origin master 推送到master
  • 15 、根据所处的分支不同,以上推送命令也各不相同
1、如果是在master中进行的修改,然后推送远程仓库,则
git commit -am "master修改"
git push -u origin master
2、如果是在dev分支中进行的修改,然后推送远程仓库则
①、推送至dev
git commit -u "推送至dev"
git push -u origin dev
②推送至master
git commit -u "推送至master"
git checkout master
git merge dev
git push -u origin master
  • 15、需要用的时候,将远程master分支拉到本地master分支,切换到本地master分支之后,
git pull 

13、切换到本地dev分支,将远程master分支上最新代码拉到本地dev分支

git pull origin master

[参考]https://www.jianshu.com/p/2f7e785bf117

相关文章

  • github | 仓库和分支管理

    1. 仓库管理 提示:仓库一般就指的是远程仓库即github的仓库.参阅:github 创建远程分支以及远程分支无...

  • git 基本用法

    注册github账号 用法 1. 远程仓库-->本地仓库(克隆) a)创建远程仓库gitDemob)从远程仓库克隆...

  • Source Tree管理GitHub库

    详见:推荐一款github管理神器SourceTree 1. 仓库面板-创建远程仓库 创建远端GitHub上的仓库...

  • GitHub相关

    1.创建远程仓库方法 在GitHub的Newproject上创建一个远程仓库 使用命令拉取远程仓库 2.本地仓库关...

  • 2018-07-16 git学习-远程库

    一、远程仓库 1、登录GitHub,创建一个新的仓库 2、创建本地仓库和github仓库关联 git remot...

  • pycharm与远程仓库进行连接

    个人操作远程仓库的步骤 一 .github创建远程仓库------->克隆到本地仓库--------->维护本地代...

  • Git详细教程(九)远程仓库-创建远程仓库

    现在我们在GitHub上创建一个远程仓库。 设置远程仓库名: 现在你已经成功创建了一个远程仓库。创建成功后会弹出一...

  • 远程仓库GitHub仓库创建

    首先你需要有一个GitHub 帐号密码 首先点那个+号 创建一个仓库 输入仓库的名字,自己写一个,仓库的类型是公共...

  • Git远程仓库

    1,创建SSH Key: 2,添加公有密钥: 3,github网站上创建远程仓库4,关联远程仓库 git remo...

  • Xcode 上传 github/gitlab/gitee 远程仓

    一、创建远程仓库 可以通过 github、gitee、gitlab 创建,并复制仓库链接:https://gith...

网友评论

      本文标题:Github创建远程仓库

      本文链接:https://www.haomeiwen.com/subject/ectdghtx.html