1、在电脑上安装 Windows 版 Git
下载地址:https://git-scm.com/downloads
2、使用 Git GUI 生成 SSH Key
3、将 SSH Key 添加到 Github
4、在电脑上创建文件夹,使用 Git Shell 初始化
git init git remote add origin [email protected]:huhaiqng/Oracle.git
5、拉文件
git pull [email protected]:huhaiqng/Oracle.git
6、将新增修改的文件上传
git add . git commit -m "提交" git push -u origin master
原文地址:https://www.cnblogs.com/gaodi2345/p/11620444.html
时间: 2024-10-08 03:06:54