# on gerrit server$ cd$site_path/git;
$ mv old_name.git new_name.git
2. Flush the caches on server:
12
# On another client image:$ ssh -p 29418 gerrit.server.com gerrit flush-caches
3. Run sql statement to update the changes:
12345678
# On another client image (need "Access Database" capability):$ ssh -p 29418 gerrit.server.com gerrit gsql [Enter]gerrit> USE {Database};
gerrit> SELECT * FROM changes WHERE dest_project_name='old_name';
# if have more than 1, run the following command to update, otherwise, quit with \q;gerrit> UPDATE changes SET dest_project_name='new_name' WHERE
dest_project_name='old_name';
gerrit> \q