美文网首页
mac 本地项目上传到github网站

mac 本地项目上传到github网站

作者: 景小帮 | 来源:发表于2021-03-20 16:41 被阅读0次

    前言

    mac需要安装git环境,具体安装自行百度

    github网站需要登录

    实现步骤

    1、登陆github,新建项目  标注红色:是网上仓库地址

    2、选中需要上传项目,右击,打开mac终端,执行git初始化操作

    3、执行git初始化操作

    git  init

    4、执行add添加所有文件

    git  add  .

    5、执行commit操作

    git commit  -m  "first commit"

    6、连接远程分支   

    备注:https://github.com/xxxx/xxxx.git  指的是步骤1,远程仓库地址

    git remote add  origin  https://github.com/xxxx/xxxx.git

    7、推送远程分支,大功告成,打完收工

    git push origin master

    结果:github上看到代码已成功上传

    相关文章

      网友评论

          本文标题:mac 本地项目上传到github网站

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