First time here? Check out the FAQ!
![]() | 1 | initial version |
I got this error. You are supposed to ( of course with your gerrit name)
git remote add gerrit ssh://dbaxps@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 2 | No.2 Revision |
I got this error. You are supposed to run ( of course with your gerrit name)
git remote add gerrit ssh://dbaxps@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 3 | No.3 Revision |
I got this error. You are supposed to run ( of course with your gerrit name)
git remote add gerrit ssh://dbaxps@review.openstack.org:29418/openstack/openstack-manuals.git
OK. See https://wiki.openstack.org/wiki/Documentation/HowTo/FirstTimers
If you see this error:
We don't know where your gerrit is. Please manually create a remote named "gerrit" and try again.
You need to make a git remote that maps to the review.openstack.org ssh port for your repo. For an example for a username annegentle and the openstack-manuals repo, you'd run this command:
git remote add gerrit ssh://annegentle@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 4 | No.4 Revision |
I got this error. You are supposed to run ( of course with your gerrit name)
git remote add gerrit ssh://dbaxps@review.openstack.org:29418/openstack/openstack-manuals.git
ssh://dbaxps@review.openstack.org:29418/openstack/openstack-planet.git
OK. See https://wiki.openstack.org/wiki/Documentation/HowTo/FirstTimers
If you see this error:
We don't know where your gerrit is. Please manually create a remote named "gerrit" and try again.
You need to make a git remote that maps to the review.openstack.org ssh port for your repo. For an example for a username annegentle and the openstack-manuals repo, you'd run this command:
git remote add gerrit ssh://annegentle@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 5 | No.5 Revision |
I got this error. You are supposed to run ( of course with your gerrit name)Done just now
[dbaxps@junoFedora21 test1]$ git clone http://github.com/stackforge/nova-docker.git
Cloning into 'nova-docker'...
remote: Counting objects: 1390, done.
remote: Total 1390 (delta 0), reused 0 (delta 0), pack-reused 1390
Receiving objects: 100% (1390/1390), 347.13 KiB | 447.00 KiB/s, done.
Resolving deltas: 100% (719/719), done.
Checking connectivity... done.
[dbaxps@junoFedora21 test1]$ cd nova*
[dbaxps@junoFedora21 nova-docker]$ git review -s
Could not connect to gerrit.
Enter your gerrit username: dbaxps
Trying again with ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
<traceback object at 0x7fe9e75807e8>
We don't know where your gerrit is. Please manually create a remote
named "gerrit" and try again.
Traceback (most recent call last):
File "/bin/git-review", line 10, in <module>
sys.exit(main())
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1259, in main
_main()
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1173, in _main
config['hostname'], config['port'], config['project'])
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 593, in check_remote
add_remote(scheme, hostname, port, project, remote)
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 333, in add_remote
raise Exception("Could not connect to gerrit at %s" % remote_url)
Exception: Could not connect to gerrit at ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git remote add gerrit ssh://dbaxps@review.openstack.org:29418/openstack/openstack-planet.git
ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git review -s
Return to command line with no errors
OK. See https://wiki.openstack.org/wiki/Documentation/HowTo/FirstTimers
If you see this error:
We don't know where your gerrit is. Please manually create a remote named "gerrit" and try again.
You need to make a git remote that maps to the review.openstack.org ssh port for your repo. For an example for a username annegentle and the openstack-manuals repo, you'd run this command:
git remote add gerrit ssh://annegentle@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 6 | No.6 Revision |
Done just nownow. First run ssh test
[dbaxps@junoFedora21 nova-docker]$ ssh -p 29418 dbaxps@review.openstack.org gerrit version
gerrit version 2.8.4-15-g6dc8444
Then git clone ...
and try to proceed having been registered on Gerrit with name "dbaxps" a while ago .
[dbaxps@junoFedora21 test1]$ git clone http://github.com/stackforge/nova-docker.git
Cloning into 'nova-docker'...
remote: Counting objects: 1390, done.
remote: Total 1390 (delta 0), reused 0 (delta 0), pack-reused 1390
Receiving objects: 100% (1390/1390), 347.13 KiB | 447.00 KiB/s, done.
Resolving deltas: 100% (719/719), done.
Checking connectivity... done.
[dbaxps@junoFedora21 test1]$ cd nova*
[dbaxps@junoFedora21 nova-docker]$ git review -s
Could not connect to gerrit.
Enter your gerrit username: dbaxps
Trying again with ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
<traceback object at 0x7fe9e75807e8>
We don't know where your gerrit is. Please manually create a remote
named "gerrit" and try again.
Traceback (most recent call last):
File "/bin/git-review", line 10, in <module>
sys.exit(main())
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1259, in main
_main()
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1173, in _main
config['hostname'], config['port'], config['project'])
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 593, in check_remote
add_remote(scheme, hostname, port, project, remote)
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 333, in add_remote
raise Exception("Could not connect to gerrit at %s" % remote_url)
Exception: Could not connect to gerrit at ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git remote add gerrit ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git review -s
Return to command line with no errors
OK. See https://wiki.openstack.org/wiki/Documentation/HowTo/FirstTimers
If you see this error:
We don't know where your gerrit is. Please manually create a remote named "gerrit" and try again.
You need to make a git remote that maps to the review.openstack.org ssh port for your repo. For an example for a username annegentle and the openstack-manuals repo, you'd run this command:
git remote add gerrit ssh://annegentle@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 7 | No.7 Revision |
Done just now. First run ssh test
[dbaxps@junoFedora21 nova-docker]$ ssh -p 29418 dbaxps@review.openstack.org gerrit version
gerrit version 2.8.4-15-g6dc8444
Then git clone ...
and try to proceed having been registered on Gerrit with name "dbaxps" a while ago .
[dbaxps@junoFedora21 test1]$ git clone http://github.com/stackforge/nova-docker.git
Cloning into 'nova-docker'...
remote: Counting objects: 1390, done.
remote: Total 1390 (delta 0), reused 0 (delta 0), pack-reused 1390
Receiving objects: 100% (1390/1390), 347.13 KiB | 447.00 KiB/s, done.
Resolving deltas: 100% (719/719), done.
Checking connectivity... done.
[dbaxps@junoFedora21 test1]$ cd nova*
[dbaxps@junoFedora21 nova-docker]$ git review -s
Could not connect to gerrit.
Enter your gerrit username: dbaxps
Trying again with ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
<traceback object at 0x7fe9e75807e8>
We don't know where your gerrit is. Please manually create a remote
named "gerrit" and try again.
Traceback (most recent call last):
File "/bin/git-review", line 10, in <module>
sys.exit(main())
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1259, in main
_main()
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1173, in _main
config['hostname'], config['port'], config['project'])
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 593, in check_remote
add_remote(scheme, hostname, port, project, remote)
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 333, in add_remote
raise Exception("Could not connect to gerrit at %s" % remote_url)
Exception: Could not connect to gerrit at ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git remote add gerrit ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git review -s
Return to command line with no errors
OK. See I followed instruction from https://wiki.openstack.org/wiki/Documentation/HowTo/FirstTimers
If you see this error:
We don't know where your gerrit is. Please manually create a remote named "gerrit" and try again.
You need to make a git remote that maps to the review.openstack.org ssh port for your repo. For an example for a username annegentle and the openstack-manuals repo, you'd run this command:
git remote add gerrit ssh://annegentle@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 8 | No.8 Revision |
Done just now. First run ssh test
[dbaxps@junoFedora21 nova-docker]$ ssh -p 29418 dbaxps@review.openstack.org gerrit version
gerrit version 2.8.4-15-g6dc8444
Then So, I don't have problem with my public ssh-key uploaded to Gerrit. However, when I attempt to proceed
witn git clone ...
and try to proceed having been registered on Gerrit with name "dbaxps" a while ago .
[dbaxps@junoFedora21 test1]$ git clone http://github.com/stackforge/nova-docker.git
Cloning into 'nova-docker'...
remote: Counting objects: 1390, done.
remote: Total 1390 (delta 0), reused 0 (delta 0), pack-reused 1390
Receiving objects: 100% (1390/1390), 347.13 KiB | 447.00 KiB/s, done.
Resolving deltas: 100% (719/719), done.
Checking connectivity... done.
[dbaxps@junoFedora21 test1]$ cd nova*
[dbaxps@junoFedora21 nova-docker]$ git review -s
Could not connect to gerrit.
Enter your gerrit username: dbaxps
Trying again with ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
<traceback object at 0x7fe9e75807e8>
We don't know where your gerrit is. Please manually create a remote
named "gerrit" and try again.
Traceback (most recent call last):
File "/bin/git-review", line 10, in <module>
sys.exit(main())
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1259, in main
_main()
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1173, in _main
config['hostname'], config['port'], config['project'])
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 593, in check_remote
add_remote(scheme, hostname, port, project, remote)
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 333, in add_remote
raise Exception("Could not connect to gerrit at %s" % remote_url)
Exception: Could not connect to gerrit at ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git remote add gerrit ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git review -s
Return to command line with no errors
I followed instruction from https://wiki.openstack.org/wiki/Documentation/HowTo/FirstTimers
If you see this error:
We don't know where your gerrit is. Please manually create a remote named "gerrit" and try again.
You need to make a git remote that maps to the review.openstack.org ssh port for your repo. For an example for a username annegentle and the openstack-manuals repo, you'd run this command:
git remote add gerrit ssh://annegentle@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 9 | No.9 Revision |
Done just now. First run ssh test
[dbaxps@junoFedora21 nova-docker]$ ssh -p 29418 dbaxps@review.openstack.org gerrit version
gerrit version 2.8.4-15-g6dc8444
So, I don't have problem with my public ssh-key uploaded to Gerrit. However, when I attempt to proceedFollowing question 56720 I've signed ICLA after that situation has changed
witn git clone ...
having been registered on Gerrit with name "dbaxps" a while ago .
[dbaxps@junoFedora21 test1]$ test2]$ git clone http://github.com/stackforge/nova-docker.git
Cloning into 'nova-docker'...
remote: Counting objects: 1390, done.
remote: Total 1390 (delta 0), reused 0 (delta 0), pack-reused 1390
Receiving objects: 100% (1390/1390), 347.13 KiB | 447.00 519.00 KiB/s, done.
Resolving deltas: 100% (719/719), done.
Checking connectivity... done.
[dbaxps@junoFedora21 test1]$ test2]$ cd nova*
[dbaxps@junoFedora21 nova-docker]$ git review -s
Could not connect to gerrit.
Enter your gerrit username: dbaxps
Trying again with ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
<traceback object at 0x7fe9e75807e8>
We don't know where your gerrit is. Please manually create Creating a remote
named git remote called "gerrit" and try again.
Traceback (most recent call last):
File "/bin/git-review", line 10, in <module>
that maps to:
sys.exit(main())
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1259, in main
_main()
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 1173, in _main
config['hostname'], config['port'], config['project'])
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 593, in check_remote
add_remote(scheme, hostname, port, project, remote)
File "/usr/lib/python2.7/site-packages/git_review/cmd.py", line 333, in add_remote
raise Exception("Could not connect to gerrit at %s" % remote_url)
Exception: Could not connect to gerrit at ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git remote add gerrit ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
[dbaxps@junoFedora21 nova-docker]$ git review -s
Return to command line with no errors
I followed instruction from https://wiki.openstack.org/wiki/Documentation/HowTo/FirstTimersThank you for instructing me how to manage
If you see this error:
We don't know where your gerrit is. Please manually create a remote named "gerrit" and try again.
You need to make a git remote that maps to the review.openstack.org ssh port for your repo. For an example for a username annegentle and the openstack-manuals repo, you'd run this command:
git remote add gerrit ssh://annegentle@review.openstack.org:29418/openstack/openstack-manuals.git
![]() | 10 | No.10 Revision |
Done just now. First run ssh test
[dbaxps@junoFedora21 nova-docker]$ ssh -p 29418 dbaxps@review.openstack.org gerrit version
gerrit version 2.8.4-15-g6dc8444
Following question 56720 https://ask.openstack.org/en/question/56720/cannot-store-contact-information-when-updating-info-in-openstack-gerrit/
I've signed ICLA after that situation has changed
[dbaxps@junoFedora21 test2]$ git clone http://github.com/stackforge/nova-docker.git
Cloning into 'nova-docker'...
remote: Counting objects: 1390, done.
remote: Total 1390 (delta 0), reused 0 (delta 0), pack-reused 1390
Receiving objects: 100% (1390/1390), 347.13 KiB | 519.00 KiB/s, done.
Resolving deltas: 100% (719/719), done.
Checking connectivity... done.
[dbaxps@junoFedora21 test2]$ cd nova*
[dbaxps@junoFedora21 nova-docker]$ git review -s
Creating a git remote called "gerrit" that maps to:
ssh://dbaxps@review.openstack.org:29418/stackforge/nova-docker.git
Thank you for instructing me how to manage