git remote branch操作

将本地branch basic提交到remote的basic上:

git push origin basic:basic

将remote的 basic branch更新到本地的 basic branch上:

git fetch

git merge basic

(尽量不要用 git pull,会隐藏很多细节)

时间: 2024-10-21 01:27:02

git remote branch操作的相关文章

git remote加入本地库的方法

方法来自airk: 假设须要将你电脑本地的一个git库(目录)B 加入到另外一个git库(目录) A的 remote里 操作方法例如以下: 先在git仓库B操作: git init --bare 然后在git仓库A里运行正常的git remote add 操作就可以. 仅仅只是这里的remote的路径不是网址了 而是你电脑上git库B目录的绝对路径: git remote add branch_B /path_to_branch_B 然后再运行 git fetch branch_B 就可以把gi

git remote 操作

git remote git remote 基本使用 基本使用 git是一个分布式代码管理工具,所以可以支持多个仓库,在git里,服务器上的仓库在本地称之为remote. 直接clone一个仓库: $: git clone [email protected]:projects/search.git 另外一种clone方式: # 创建目录初始化本地仓库 $: mkdir search && cd search $: git init # 添加远程仓库路径 $: git remote add

git fetch remote branch

http://stackoverflow.com/questions/9537392/git-fetch-remote-branch/ git fetch <remote> <rbranch>:<lbranch> git checkout <lbranch> ... where <rbranch> is the remote branch or source ref and <lbranch> is the as yet non-ex

git create remote branch (五)

[email protected] MINGW64 ~/WebstormProjects/backEndServer (master) 查看本地分支信息$ git branch* master [email protected] MINGW64 ~/WebstormProjects/backEndServer (master) 查看分支最后一次提交信息$ git branch -v* master 1c4ed79 #AHB-20 add get device subdevice list [em

Git操作:远程仓库(git remote)的添加、管理和删除

这是你的git仓库,他已经添加了一个远程仓库,可以用git remote -v查看绑定的仓库列表,他会以<仓库名>  <仓库地址>的形式展示出来(一个仓库会显示两遍): $ git remote -v origin https://xxx.com/lyj00912/xxx.git (fetch) origin https://xxx.com/lyj00912/xxx.git (push) 如果要删除一个仓库,可以用git remote remove <仓库名>来删除这个

git remote log error

使用git pull的时候收到以下信息: error: there are still refs under 'refs/remotes/origin/xxxx'From 10.1.25.57:yyyy/zzzz_server ! [new branch]      xxxxx     -> origin/xxx  (unable to update local ref) 百度了很久,(因为百度很烂). 才看到了一个解决方案: 1. git remote show origin 使用这个命令,发

GIT 的常规操作

GIT 的常规操作 常规操作也是我自己平时常用的几个命令, 学自于 pro git 这本书中 git 配置文件 git的配置文件位置 针对所有用户:/etc/gitconfig 针对当前用户: -/.gitconfig 查看配置的方法 git config --list 修改配置的方法 git config --global user.name "wangyubin" (修改的是-/.gitconfig) git config --system user.name "wang

Git:常用操作

一.git clone $ git clone http[s]://example.com/path/to/repo.git/$ git clone ssh://example.com/path/to/repo.git/$ git clone git://example.com/path/to/repo.git/$ git clone /opt/git/project.git $ git clone file:///opt/git/project.git$ git clone ftp[s]://

git命令行操作

从本地上传代码到仓库(假设已经建好仓库): 1.初始化: git init 2.将所有文件加入缓存区: git add * 3.提交当前工作空间的修改内容: git commit -m 'commit info' 4.将仓库连接到远程服务器(server仓库地址): git remote add origin <server> 5.改动内容推送到远程master(如果报rejected错误,要先pull一下再push): git push -u origin master (在第一次推送mas