go back to outlining inline code (single backticks) with light border

and make it possible to use code in post/page titles
This commit is contained in:
2020-06-30 09:37:03 -04:00
parent b6cbb737c9
commit 3cadddc799
9 changed files with 339 additions and 326 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
---
title: "How To: Safely Rename 'master' Branch on GitHub ✊🏾"
title: "How To: Safely Rename `master` Branch on GitHub ✊🏾"
date: 2020-06-28 09:28:52-0400
description: 'Some of the most popular open-source projects are renaming their default branch from "master" on GitHub. Here''s how to do so, and safely.'
tags:
@@ -39,7 +39,7 @@ git branch -m master main
### 2. Push the new branch to GitHub:
The first command should be familiar. `-u` sets the new branch as the local default at the same time, and the second line ensures our local `HEAD` points to our new branch on GitHub.
The first command is probably familiar. `-u` sets the new branch as the local default at the same time, and the second line ensures our local `HEAD` points to our new branch on GitHub.
```bash {linenos=false}
git push -u origin main