/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

amanhimself.dev
| | scottgruber.me
1.6 parsecs away

Travel
| | Here are the steps to replace master with main branch.This is a simple fix to avoid any negative connotations inherit in master:slave terminology. Although in the history of git the etymology of master was in the sense as master:copy. Move the master branch to main with the command: git branch -m master main Using the argument -m will transfer all of the commit history on the 'master' branch to your new 'main' branch so nothing gets lost. Push the newly-named main branch to GitHub (assuming that is your ...
| | haacked.com
1.9 parsecs away

Travel
| | A git alias to clean up gone branches. Even ones that have been squashed and merged.
| | stevenmortimer.com
1.0 parsecs away

Travel
| | Follow these easy 5 steps to change the default branch name in your repo to 'main' instead of 'master' to show support for removing divisive language in tech.
| | unixdigest.com
14.7 parsecs away

Travel
| [AI summary] This tutorial explains a simple Git workflow to manage your home directory by using a white-listing approach with a wildcard in .gitignore to selectively track specific files while ignoring everything else.