Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The recommended version of get git is 2.7.4 or later.  Check the installed version of git in the Ubuntu VM:

git --version

...

sudo apt install git-review

Create $HOME/.gitconfig (replace highlighted values with your own information):

[user]
        name = FirstName LastName
        email = you@yourcompany.com
[core]
        autocrlf = false
[merge]
        tool = vimdiff
[gitreview]
        username = YourLinuxFoundationId

If you're behind a corporate firewall and your proxy server has SOCKS support...

You may be able to use the SSH protocol with git, which is preferred over HTTPSversus HTTP.  This method is known to work in the AT&T corporate network.

...

ssh -p 29418 gerrit.onap.org

Image RemovedImage Added

If you're behind a corporate firewall and you

...

need to use HTTPS...

TODO