使用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'.