Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit e1c4b35

Browse files
committed
Website@0.1.0
Finished beta version 1. Sveltekit 2. Tailwindcss 3. HyperUI
1 parent a37bd67 commit e1c4b35

23 files changed

+3204
-20
lines changed

Github Rules.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,18 @@ This document is writtend by _2022-04-01_.
1717
1. Branches
1818
2. Naming
1919

20+
### Tags
21+
22+
```javascript
23+
git tag // check all tags
24+
25+
git tag "tag_name" // tagging on HEAD in local
26+
git push --tags // push all tags from local to origin repo
27+
28+
git tag -d "tag_name" // delete tag by tag_name in local
29+
git push origin --delete "tag_name" // delete tag by tag_name in origin
30+
```
31+
2032
### Branches
2133

2234
```javascript

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
### REFERECNES
2+
3+
TailwindCSS
4+
5+
1. Template [HyperUI](https://www.hyperui.dev/)
6+
2. Settings [Blog Post](https://intrepidgeeks.com/tutorial/how-to-set-sveltekit-using-tailwind-css)
7+
3. Settings+ [Blog Post](https://blog.rhostem.com/posts/2021-06-05-tailwind-css)

0 commit comments

Comments
 (0)