Please do some basic git configuration on your PC.
Configure user name and email
$git config --global user.name "Your name"
$git config --global user.email "<your account>@yuneec.com"
⚠️ Please do not user email address for @helang.com, which is inconsistent from Gerrit setting.
Configure git commit message editor
By default, git uses emacs for git commit editor. You can use this command to change to vi.
$git config --global user.editor vi