hi @XxOVERUNITYxX ,
Go to C:\Users\UERNAME\ in Windows file explorer
So my .gitconfig
[credential]
helper = ghp_xxxxxxxxxxyyyyyyyy
[user]
email = jims.anything@any.com
name = Jimbxxx
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
How to Set Git Username and Password in GitBash? | GeeksforGeeks
Step 4: Set your Password
Git doesn’t directly store passwords in the configuration file, but you can set up a credential helper to store your password securely for future use. Run this command:
$git config --global user.password "1234321"
$ git config --global credential.helper store
$ git config --list
credential.helper=ghp_xyzzzzpppppp
Keep this key safe don’t show it to anyone as they can login as YOU with this!!!
Keep a safe copy as you will need this at every update of Git Bash and only works on latest versions
Now you can access all your Git Repositories from Git Bash