Showing posts with label credentials. Show all posts
Showing posts with label credentials. Show all posts

Saturday, November 23, 2024

Set up Credentials in Git for Windows

 Open a Git Bash terminal.
 
# Set user name
> git config --global user.name "John Doe"

# Set email
> git config --global user.email "john.doe@email.com"

Set password
> git config --global user.password "not_123456"

# Permanently store credentials
> git config --global credential.helper store

Thanks to GeeksForGeeks.

Monday, June 09, 2014

Windows Keeps Forgetting the Wi-Fi Connection Password

One possible cause of the problem is that the Intel PROSet/Wireless WiFi Connection Utility is somehow conflicting with the OS.
Try to disable it and go back to Windows  managing the connections.

Once you're opened the Intel WiFi connection utility, choose: Advanced, then something like Let Windows Manage the WiFi Connections.

You're done.