अपना पहला पैच प्रस्तुत करना
यह भी देखिए
Set up Git and SSH to work smoothly with Gerrit. First see Creating a gerrit review.
SSH सेटअप
https://review.jami.net/Documentation/user-upload.html#ssh
Generate a personal, dedicated public/private key set.
ssh-keygen -f ~/.ssh/jami_gerrit_review`
Your identification has been saved in jami_gerrit_review
.
Your public key has been saved in jami_gerrit_review.pub
.
Tell Gerrit your public key.
Set up your local SSH (via
ssh-add
or in~/.ssh/config
).Test all of the above (SSH on the service or just try to clone a repo on Gerrit via SSH).
Your repository
महत्त्वपूर्ण
यह अनुमान करता है कि आपने किसी भी मौजूदा परियोजना के क्लोन को दूर कर दिया है।
Clone a (fresh) copy of the project,
git clone ssh://USERNAME@review.jami.net:29420/PROJECT_NAME_GOES_HERE.git
; e.g.,git clone ssh://foo@review.jami.net:29420/jami-project.git
.Configure this clone's local .git/config (optional).
Generate commit Change-Ids. Also known as commit-msg hook script.
A shell script to be installed to .git/hooks/commit-msg.
स्क्रिप्ट आपके रिपॉजिटरी से किए गए प्रत्येक कॉम के लिए एक अद्वितीय Change_Id:हश बनाता है।
The first time you attempt a push to review
git push origin HEAD:refs/for/master
, Gerrit will notice a lack of Change-Id.Gerrit एक सुरक्षित कॉपी (scp) स्ट्रिंग भी प्रस्तुत करेगा।.git/hooks/commit-msg की एक प्रति डाउनलोड करने के लिए that का उपयोग करें।