You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all,
When I use the module to clone the repo, I can see the URL with username and password using the "ps -fe" command.
#################
def git_password_url_escaped(self):
return urllib.parse.quote(self._git_password, safe='')
#################
if not self._git_username:
setattr(self, '_git_username', input('Insert git username: '))
if not self._git_password:
setattr(self, '_git_password', getpass.getpass(prompt='Insert git password: '))
self._git_port = port
self.git_base_url = (f"https://{self._git_username}:{self.git_password_url_escaped}"
f"@{self._git_host}:{self._git_port}/")
#################
This is the code that I'm using.
Thanks
The text was updated successfully, but these errors were encountered:
Hi all,
When I use the module to clone the repo, I can see the URL with username and password using the "ps -fe" command.
#################
def git_password_url_escaped(self):
return urllib.parse.quote(self._git_password, safe='')
#################
if not self._git_username:
setattr(self, '_git_username', input('Insert git username: '))
if not self._git_password:
setattr(self, '_git_password', getpass.getpass(prompt='Insert git password: '))
self._git_port = port
self.git_base_url = (f"https://{self._git_username}:{self.git_password_url_escaped}"
f"@{self._git_host}:{self._git_port}/")
#################
This is the code that I'm using.
Thanks
The text was updated successfully, but these errors were encountered: