美文网首页
码云使用步骤

码云使用步骤

作者: 每天进步一点点5454 | 来源:发表于2020-07-03 12:07 被阅读0次

    简易操作

    注:****简易操作,****我把我知道的写了下来

    注意:提交代码的时候,先 git pull (可以百度)

    第一步下载git
    https://git-scm.com/download/win
    这是官网页面

    image.png

    第二步 下载完之后,安装next

    第三步 下载成功之后----在桌面上右键---看到有’Git Bash’👇

    image.png

    第四步 点击GIt Bash


    image.png

    第五步

    (1) 进入码云网站

    (2) 点击个人主页

    image.png

    第六步 新建仓库

    image.png image.png

    第七步

    创建仓库完成(自动跳转这个页面)

    点击克隆---- 点击https ---点击复制

    image.png

    第八步

    桌面上右键 点击git Bash

    输入命令:

    git config --global user.name "码云名称"
    git config --global user.email "码云邮箱"
    

    第九步

    输入命令: git clone 复制线上地址 回车

    image.png

    第10步

    输入账号名称

    image.png

    第11步

    输入密码


    image.png

    成功

    第12步

    image.png

    第13步

    桌面上会出现一个ceshi文件夹名称

    我们点击进去--右键GIt Bash-


    image.png

    我们随便建一个文件,里面随便写点内容

    image.png

    第14步

    输入命令(暂存区) git add . 回车 (后面那个.点必写的)

    image.png

    第15步

    输入命令git commit –m ‘提交备注如:修改了xxxbug’ 回车

    image.png

    第16步

    输入命令 git push

    image.png image.png

    上传成功

    我们打开码云网站---刷新---就可以看到我们刚刚随便写的那个文件了

    image.png

    常用的命令

    Git add .

    Git commit –m ‘提交日志’

    Git push

    配置全局账号和密码,这样就不用每次输入账号和密码了

    git bash进入你的项目目录,输入:

    git config --global credential.helper store

    相关文章

      网友评论

          本文标题:码云使用步骤

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