赞
踩
- git config --global user.name "XXXX"
- git config --global user.email "XXXX@qq.com"
- git init //该命令的作用是在当前项目的目录中生成本地的git管理(会发现在当前目录下多了一个.git文件夹)
- git add . //将所有的文件添加到仓库中
- git commit -m "第一次提交" //这个就是注释
- git remote add origin https://github.com/YM2025/machine_learning.git //将本地的仓库关联到github上自己创建项目的地址
- git push -u origin master //把代码上传到github仓库
打开git Bash,cd到要更新的项目路径,依次执行下面语句
- git add .
- git commit -m "second commit"
- git remote add origin url
- git pull --rebase origin master
- git push origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。