owners
or readers
group
for the requested repository. For example, the two
groups that control access to the
klee
repository are
code-klee-owners
and
code-klee-readers
.git
to use your OscarKilo credentials"api_keys"
section on that profile page and copy the
key string.[optional] Configure the git
credential helper to remember your
key. (This command will cause step 4 to save credentials in
~/.git-credentials)
git config --global credential.helper store
Clone the repository using https. For example:
git clone https://code.oscarkilo.com/klee
Cloning into 'klee'...
Username for 'https://code.oscarkilo.com': [your username]
Password for 'https://code.oscarkilo.com': [your api key]
The git
credential helper will remember your credentials for future use.
go get
to use your OscarKilo credentialsAdd the following lines to your ~/.netrc
file:
machine oscarkilo.com
login [your username]
password [your api key]
On Windows, this file is located at %USERPROFILE%/_netrc
.
chmod 600 ~/.netrc
to protect your credentials.
Set your GOPRIVATE
environment variable to “oscarkilo.com”.
This is required for go get
to work.