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'.
  • 相关阅读:
    进程和线程
    vue程序搭建
    EXTJS 不显示窗体 标题框的办法
    asp.net 本地资源连接没反映的解决办法
    IIS支持flv格式流传送的办法(解决flash播放器报200错误)
    response.write不要放到try里去,不然会报一个错误 a instance object什么的
    Webservice 用http get方式无法请求到的解决办法
    转一篇关于RIA的内存泄露的文章
    jquery的选择器$('')在IE6下对JS动态生成(比如ajax生成的)的元素失效的解决办法
    聚类存储过程分析
  • 原文地址:https://www.cnblogs.com/security-guard/p/14930110.html
Copyright © 2011-2022 走看看