上传代码步骤:
1、进入到本地的文件夹内,git初始化:git init
2、将代码放到暂存区:git add .
3、提交代码到本地分支:git commit -m "备注"
4、push代码到远程仓库:git push origin [local branch]:[remote branch]
eg:git push origin LOL origin/LOL
- 推送本地分支到远程新分支:git push origin local_branch:remote_branch
local_branch必须为你本地存在的分支,remote_branch为远程分支,如果remote_branch不存在则会自动创建分支
eg: git push origin LOL:CRM_LOL 本地分支名:LOL 远程分支名:CRM_LOL
时间: 2024-10-17 20:02:02