i am building a simple python gui app using tkinter which will utilize this command in the background:
os.system( 'git push bitbucket master' )
as this command will be executed in the background, there is some issue that i am facing like while providing the password for the git account to push into the git server.
how to automatically provide the git user password when it is prompted in the background or include the password inline like:
os.system( 'git push bitbucket master -p=mypassword' )