Quick tips that I am tired of searching for

Quick tips that I am tired of searching for

June 19, 2025

There are a few commands over the years that have not been able to get to “stick” in my brain. Here they are organized by type. I’ll be adding to these as I go ;)

Git

Reset your github url with your updated token
git remote set-url origin https://{{username}}:{{token}}@{{clone with https url - less the https://}}
Example:
git remote set-url origin https://john:asfdaoiuna@https://gitlab.com/gitlab-org/gitlab-foss.git

php

Want to view the result of a var_dump without getting a headache?
<?php echo '<pre>'.print_r($variable, true).'</pre>'; ?>

About the Author: Kevin