In my python program, I am trying to dynamically set user credentials - GIT config for GIT.
Repo.config_writer().set_value("user", "name", "username").release() Repo.config_writer().set_value("user", "email", "email@domain.com").release()
It is giving error, TypeError: config_writer() missing 1 required positional argument: 'self'
git.Git(path).clone(gitlab_url) - Clone is working perfectly.