一、上传代码到远程仓库
- git初始化仓库
git init
- 全局设置用户名
git config --global user.name "*****"
- 全局设置邮箱
git config --global user.email "*****@qq.com"
- 关联远程仓库
git remote add origin "远程仓库url"
- 查看本地文件状态
git status
- 提交本地代码到暂缓区
git add .
【备注】: . :提交当前目录所有文件
- 把暂缓区的代码提交到本地仓库
git commit -m "03提交的代码0625"
【备注】:-m是备注
- 从远程仓库拉代码下拉合并,并解决冲突
git pull origin master
- 再次把合并后的代码提交到暂缓区
git add .
git commit -m "03提交的代码"
- 把本地仓库提交到远程仓库
git push -u origin master
【备注】:加了参数-u后,以后即可直接用git push 代替git push origin master
- 如果推不上去,再重新拉下代码进行合并
2、从远程代码拉代码到本地
- 第一次关联远程仓库拉代码
git clone 远程仓库url
- 第二次拉代码
git pull origin master
【备注】master是分支名称