git push -d origin branchName // 删除远程分支
git checkout -b newBranchName // 新建本地分支
git push -u origin branchName // 本地新分支
git branch -d <BranchName>// 删除本地分支
// 推送本地代码到已有仓库
1、创建.git
git init // 本地无.git,有则先删除.git
2、关联远程仓库master分支
git remote add origin https://..... <远程仓库地址>
3、同步远程仓库master分支
git pull origin master
4、添加本地所有代码
git add .
5、提交本地代码到暂存区
git commit -m 'first commit'
6、推送到远程仓库
git push -u origin master
// 新建远程分支
1 新建本地分支
git checkout -b newBranchName
2 推送到远程仓库
git push -u origin branchName
网友评论