您的位置:首页 > Web前端

Gerrit 上获取Patch

2016-05-26 10:37 501 查看
在gerrit 获取git fetch地址

在review   页面 点击Download --> Checkout  复制fetch  命令



复制的命令如下 git fetch https://git.openstack.org/openstack/solum refs/changes/39/321239/1 && git checkout FETCH_HEAD

在本地devstack 上执行即可

solumuser@ubuntu14044:/opt/stack/solum$ git fetch https://git.openstack.org/openstack/solum refs/changes/39/321239/1 && git checkout FETCH_HEAD
From https://git.openstack.org/openstack/solum * branch refs/changes/39/321239/1 -> FETCH_HEAD
M solum/api/handlers/common.py
Note: checking out 'FETCH_HEAD'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

git checkout -b new_branch_name

HEAD is now at cdc2e78... (WIP)Fix private repo build
solumuser@ubuntu14044:/opt/stack/solum$ git branch -a
* (detached from FETCH_HEAD)
master
remotes/origin/HEAD -> origin/master
remotes/origin/cookiecutter
remotes/origin/master
remotes/origin/readme-start
remotes/origin/stable/mitaka
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  git fetch review Patch