I am trying to clone a project from the private git repository git clone gitolite@10.10.10.55:/Intel/BareRepos/lteue.git
using the Python script. The problem with my script is I need to enter the password manually every time for cloning the project from local repository.
Is there any pythonic way to clone the project without entering any password manually?
This is the script which I had written.
import os
path = path/to/save/cloned/project
os.chdir(path)
os.system("git clone gitolite@10.10.10.55:/Intel/BareRepos/lteue.git")#...Clonning