Using git to update code
Insure the user has ssh access to the github repository.
Configure git command line for this user:
git config --list credential.helper=osxkeychain user.name=MikeTangoBravo user.email=MTB@costaflores.com
Clone the repository
git clone git@github.com:openvino/openvino-api.git Cloning into 'openvino-api'... Warning: Permanently added the RSA host key for IP address '44.0.0.1' to the list of known hosts. remote: Enumerating objects: 761, done. remote: Counting objects: 100% (233/233), done. remote: Compressing objects: 100% (169/169), done. remote: Total 761 (delta 99), reused 178 (delta 62), pack-reused 528 Receiving objects: 100% (761/761), 21.57 MiB | 11.52 MiB/s, done. Resolving deltas: 100% (360/360), done.
Edit the files that need changing with vi.
vi README.md
Commit the changes.
Push the changes back to github