git将本地已经存在的分支和一个指定的远端分支建立映射关系

Make an existing Git branch track a remote branch?

Given a branch foo and a remote upstream:

As of Git 1.8.0:

git branch -u upstream/foo

Or, if local branch foo is not the current branch:

git branch -u upstream/foo foo

Or, if you like to type longer commands, these are equivalent to the above two:

git branch --set-upstream-to=upstream/foo

git branch --set-upstream-to=upstream/foo foo

As of Git 1.7.0:

git branch --set-upstream foo upstream/foo

Notes:

All of the above commands will cause local branch foo to track remote branch foo from remote upstream. The old (1.7.x) syntax is deprecated in favor of the new (1.8+) syntax. The new syntax is intended to be more intuitive and easier to remember.

时间: 2024-10-06 22:10:17

git将本地已经存在的分支和一个指定的远端分支建立映射关系的相关文章

git 在本地备份与指定不需要管理文件

git 在本地备份 备份文件夹操作 在本地备份文件夹克隆一个不带工作区的仓库: 哑协议: git clone --bare <workspace>/.git yourwork.git git clone --bare file:///<workspace>/.git yourwork.git 工作文件操作 若是没有关联远端仓库,在本地工作文件直接git push会提示添加远端仓库. $ git push fatal: No configured push destination.

git查看本地和创建分支、上传分支、提交代码到分支、删除分支等

以下是git命令行里边的命令操作,加上了说明: Welcome to Git (version 1.9.5-preview20141217) Run 'git help git' to display the help index. Run 'git help <command>' to display help for specific commands. ##进入项目目录下 giscafer@LAOHOUBIN-PC /G/002_project $ cd Comments ##查看远程分

git 删除本地分支和远程分支、本地代码回滚和远程代码库回滚

[git 删除本地分支] git branch -D br [git 删除远程分支] git push origin :br  (origin 后面有空格) git代码库回滚: 指的是将代码库某分支退回到以前的某个commit id [本地代码库回滚]: git reset --hard commit-id :回滚到commit-id,讲commit-id之后提交的commit都去除 git reset --hard HEAD~3:将最近3次的提交回滚 [远程代码库回滚]: 这个是重点要说的内容

Git新建本地分支与远程分支关联问题:git branch --set-upstream【转】

本文转载自:http://blog.csdn.net/netwalk/article/details/21088405 Git新建本地分支与远程分支关联问题:git branch --set-upstream git在本地新建分支, push到remote服务器上之后,再次pull下来的时候,如果不做处理会报以下提示: [html] view plain copy You asked me to pull without telling me which branch you want to m

Git新建本地分支与远程分支关联问题:git branch --set-upstream

Git新建本地分支与远程分支关联问题:git branch --set-upstream git在本地新建分支, push到remote服务器上之后,再次pull下来的时候,如果不做处理会报以下提示: You asked me to pull without telling me which branch you want to merge with, and 'branch.production.merge' in your configuration file does not tell m

git:建立映射到远程分支的本地分支

*/--> git:建立映射到远程分支的本地分支 Table of Contents 1. git初始化 2. git config (配置) 3. git clone (克隆) 4. 获取远程分支 (branch) 以及标签 (tag) #TITLE: git:建立映射到远程分支的本地分支 #KEYWORDS: git,远程分支,本地分支,git config #DATE: 1 git初始化 aidongshengdeMacBook-Pro:openvpn aidongsheng$ git i

git删除本地分支和删除远程分支

引言: 切换分支的时候命令打错了,git checkout 后面没有跟分支名,结果git status,很多delete的文件,直接冒冷汗,git add ,commit 之后发现本地与远程确实是删除了很多文件,之前也有过一次,当时是从新换了一个目录重新拉代码...麻烦的很 把情况告诉了同事,给了我建议,删除这个分支,重新拉,于是开始了此操作. 具体操作: 我现在在dev20181018分支上,想删除dev20181018分支 1 先切换到别的分支: git checkout dev201809

git删除本地及远程分支

1. 删除本地分支: git branch -d branchName 2. 删除远程分支: // 方法一:将删除的本地分支推到远程(要删除的远程分支在本地有映射) git push origin :branchName // 方法二:直接删除远程分支(要删除的远程分支不在本地) git push origin --delete branchName 另: 查看本地分支:git branch; 查看本地及远程所有分支:git branch -a 或 git branch --all 实操:(删除

git 删除本地分支和远程分支

(1)使用命令git branch -a 查看所有分支 其中,remote/origin/master表示的是远程分支 (2)删除远程分支 使用命令 git push origin --delete jvmImprove   可以删除远程分支jvmImprove (3)删除本地分支 使用命令,git branch -d jvmImprove 可以删除本地分支 如果你要删除的分支未合并master,git会提示你,并告诉你使用 git branch -D branchName  可以进行强制删除