推送指定分支到远程分支上
如果你本地的分支名称和远程名称相同,则使用以下命令:
git push origin branchName
如果本地的分支跟远程的分支不一样,则指定本地和远程的分支的名称:
git push origin localBranchName:remoteBranchName
删除远程分支
git push origin --delete [branch_name]
git push origin :<远程分支名称>
添加远程分支关联
关联目的是在执行git pull, git push操作时就不需要指定对应的远程分支
git branch --set-upstream-to=origin/remote_branch your_branch
其中,origin/remote_branch是本地分支对应的远程分支;
your_branch是你当前的本地分支。
查看已经配置分支关联情况,下述三条命令均可:
git branch -vv
git remote show origin
cat .git/config
全局配置邮箱和用户名
git config --global user.name "qitiandaye"
git config --global user.email "qitiandaye@gmail.com"
如果有项目需要个性化的:
那么,在项目内应用:
git config user.name "nidaye"
git config user.email "nidaye@gmail.com"
查看当前的username 和 email :
git config user.name
git config user.email
网友评论