Redacting GIT repo's
So, you have committed a sin of checking in data/passwords/secrets and tokens. How do you remove them from the git log. There are several tools available you can use, and I'm
So, you have committed a sin of checking in data/passwords/secrets and tokens. How do you remove them from the git log. There are several tools available you can use, and I'm
There are some issues with forking a repo, if you want to fork a repo and matain all the details, here's how to do this. Note: i have copied directions from https://aaronsaray.
UPDATE wp_options SET option_value = replace(option_value, 'http://oldurl.com', 'http://newurl.com') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET guid = replace(guid, 'http://oldurl.com',
if you have access to the mysql database you can recover account access by resetting the password using the following SELECT ID, user_login, user_pass FROM wp_users; UPDATE wp_users SET
The offical way of installing rust is to call a shell script from a remote host as follows: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh As documented here: