Page History
...
repo | description | status |
|---|---|---|
lustre | Mirror of Oracle's Lustre tree | No landings |
fs/lustre-release | Whamcloud's Lustre for new releases | Gatekeeping in effect |
| branch: b1_8 | for 1.8.6+ releases |
| branch: master | for 2.1.0+ releases |
fs/lustre-dev | A collection of development branches for Whamcloud developers | no gatekeeping |
tools/e2fsprogs | Mirror of kernel.org e2fsprogs, contains lustre branches | limited checkins |
| branch: master-lustre | for 1.41.90+ releases |
Managing Changes in Git
Whole books could be written about this topic, and there plenty of online tutorials on the web that explain this in more detail and suggest other methods of managing changes. However, this distilled version is (hopefully) enough to get started.
...
| No Format |
|---|
git push ssh://USER@review.whamcloud.com:29418/fs/lustre-release HEAD:refs/for/master for the "master" branch of the lustre-release repo, or git push ssh://USER@review.whamcloud.com:29418/fs/lustre-release HEAD:refs/for/b1_8 for the "b1_8" branch of the lustre-release repo, or git push ssh://USER@review.whamcloud.com:29418/tools/e2fsprogs HEAD:refs/for/master-lustre for the "mater-lustre" branch of the e2fsprogs repo |
For convenience, you can add this to your ~/.ssh/config file:
| No Format |
|---|
Host review Hostname review.whamcloud.com Port 29418 User change.me\{YourUserid\} IdentityFile ~/.ssh/my-key-id_rsa |
Creating an inspection request for a change against master (assuming the remote alias has been added to ssh config):
| No Format |
|---|
git push ssh://review/fs/lustre-release HEAD:refs/for/master
|
Creating an inspection request for a change against b1_8 (assuming the remote alias has been added to ssh config):
| No Format |
|---|
git push ssh://review/fs/lustre-release HEAD:refs/for/b1_8
|
And add a the Gerrit server as a remote to your git repository:
...