We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05dfbee commit 2df5acbCopy full SHA for 2df5acb
1 file changed
README.md
@@ -52,9 +52,21 @@ Then push some code to main:
52
git push -u origin main
53
```
54
55
+1. Create the `badges` branch for storing the README coverage badge.
56
+
57
+ ```bash
58
+ git checkout --orphan badges
59
+ git rm -rf .
60
+ rm -f .gitignore
61
+ echo 'This branch exists only to contains the coverage badge in the README on `main`.' > README.md
62
+ git add README.md
63
+ git commit -m 'chore: initialize the badges branch'
64
+ git push origin badges
65
+ ```
66
67
Then customize the code for your repository:
68
-1. Check out a new branch to set up the repo `git checkout -b setup`
69
+1. Check out a new branch to set up the repo `git checkout -b setup main`
70
71
1. Update the code for your project:
72
0 commit comments