zoukankan      html  css  js  c++  java
  • 使用git将项目上传到github仓库


    *git提交
    1、克隆代码仓库,用于同步

    73134@LAPTOP-SG3JANLL MINGW64 /d/Python/pyecharts-gallery
    $ git clone https://github.com/security-zjt/py3Dmap.git
    Cloning into 'py3Dmap'...
    remote: Enumerating objects: 3, done.
    remote: Counting objects: 100% (3/3), done.
    remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
    Receiving objects: 100% (3/3), done.

    2、进入需要同步的文件用以上传项目

    73134@LAPTOP-SG3JANLL MINGW64 /d/Python/pyecharts-gallery
    $ cd py3Dmap/

    3、把py3Dmap下的文件都添加进来

    73134@LAPTOP-SG3JANLL MINGW64 /d/Python/pyecharts-gallery/py3Dmap (main)
    $ git add .
    warning: LF will be replaced by CRLF in README.md.
    The file will have its original line endings in your working directory
    warning: LF will be replaced by CRLF in .idea/inspectionProfiles/Project_Default.xml.
    The file will have its original line endings in your working directory
    warning: LF will be replaced by CRLF in .idea/inspectionProfiles/profiles_settings.xml.
    The file will have its original line endings in your working directory

    4、提交代码

    73134@LAPTOP-SG3JANLL MINGW64 /d/Python/pyecharts-gallery/py3Dmap (main)
    $ git commit -m "first commit"
    [main e0d729d] first commit
    756 files changed, 1382064 insertions(+), 1 deletion(-)
    create mode 100644 .idea/.gitignore
    create mode 100644 .idea/inspectionProfiles/Project_Default.xml
    create mode 100644 .idea/inspectionProfiles/profiles_settings.xml
    create mode 100644 .idea/misc.xml
    create mode 100644 .idea/modules.xml
    create mode 100644 .idea/pyecharts-gallery.iml
    create mode 100644 .idea/vcs.xml
    create mode 100644 .nojekyll

    5、将本地仓库push到github上面

    73134@LAPTOP-SG3JANLL MINGW64 /d/Python/pyecharts-gallery/py3Dmap (main)
    $ git push -u origin
    Enumerating objects: 804, done.
    Counting objects: 100% (804/804), done.
    Delta compression using up to 4 threads
    Compressing objects: 100% (801/801), done.
    Writing objects: 100% (802/802), 4.25 MiB | 1.48 MiB/s, done.
    Total 802 (delta 321), reused 0 (delta 0), pack-reused 0
    remote: Resolving deltas: 100% (321/321), done.
    To https://github.com/security-zjt/py3Dmap.git
    761c6ec..e0d729d main -> main
    Branch 'main' set up to track remote branch 'main' from 'origin'.
  • 相关阅读:
    element-ui Notification重叠问题,原因及解决办法
    详解CSS3实现无限循环的无缝滚动
    js监听浏览器离开页面操作
    判断浏览器
    轮播动效 | 环形进度条 -- 等 动效库
    拓扑插件搜集
    jquery-图片懒加载
    [原]开源的视频转换器,支持gpu,绝对好用ffmpeg的GUI==》dmMediaConverter最新版本2.3
    【原】font-awesome IE6支持代码本人测试成功
    【原创】 c#单文件绿色资源自更新
  • 原文地址:https://www.cnblogs.com/security-guard/p/14930110.html
Copyright © 2011-2022 走看看