赞
踩
https://blog.csdn.net/lixiuxiu2017/article/details/79495884
安装git后先建立一个文件夹,在里面进行bash
1 先配置ssh公钥连接本地与github远端,链接有,还要在github上建立一个仓库
2 git init 初始化本地仓库
3 git remote add origin https://github.com/sunpeizeng/FirstAidProject.git 建立远端github仓库 (在文件夹里面的config文件中可看到URL)
4 配置个人信息
git -config user.name sunpeizeng
git -config user.name 395392629@qq.com
5 开始在文件夹内新建内容缓存 git add .
6再提交 git commit -m “文件名”
7 第一次push用
git push -u origin master
即可看到github上有提交
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。