I am making a batch file that automatically clone our repository, but it will ask for a password input before it can proceed. What i want is that i'll just hard code (or if there is another way) my password. and if it prompts/ask a password, it will automatically input the password i specified in my code... base on my little research (coz most of them are just the same solution)...
i got a code like this
@echo off
echo <password>| git clone <repository url> <output path>
pause
but it doesnt seem to do the trick.
can anyone help me? please???