1 Star 3 Fork 0

pzh / cloud_library

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
note.txt 487 Bytes
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
pzh 提交于 2022-11-16 20:35 . 更新完善项目
简易的命令行入门教程:
Git 全局设置:
git config --global user.name "xxx"
git config --global user.email "邮箱地址"
创建 git 仓库:
mkdir cloud_library
cd cloud_library
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/pzh_git/cloud_library.git
git push -u origin "master"
已有仓库?
cd existing_git_repo
git remote add origin https://gitee.com/pzh_git/cloud_library.git
git push -u origin "master"
Java
1
https://gitee.com/pzh_git/cloud_library.git
git@gitee.com:pzh_git/cloud_library.git
pzh_git
cloud_library
cloud_library
master

搜索帮助