@snelusha/noto 1.2.9 → 1.3.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -36
- package/dist/index.js +1043 -931
- package/package.json +14 -9
- package/dist/index.d.ts +0 -0
package/README.md
CHANGED
|
@@ -90,22 +90,6 @@ Copy the generated commit message to your clipboard:
|
|
|
90
90
|
noto --copy # or simply noto -c
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
-
Specify the commit type for your commit message:
|
|
94
|
-
|
|
95
|
-
```bash
|
|
96
|
-
noto --type # or simply noto -t
|
|
97
|
-
|
|
98
|
-
noto --type chore # or simply noto -t chore
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
Combine all flags to specify the commit type, and apply the generated commit message in one go:
|
|
102
|
-
|
|
103
|
-
```bash
|
|
104
|
-
noto --type feat --apply # or simply: noto -t feat -a
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
This command will generate a commit message for a "feat" commit, let you refine it interactively, and then apply it directly to your current commit.
|
|
108
|
-
|
|
109
93
|
Retrieve the previously generated commit message:
|
|
110
94
|
|
|
111
95
|
```bash
|
|
@@ -128,28 +112,10 @@ Switch between branches in you git repo with an interactive prompt:
|
|
|
128
112
|
noto checkout
|
|
129
113
|
```
|
|
130
114
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
```bash
|
|
134
|
-
noto branch
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
To list all branches, including remote branches, use the -r flag
|
|
138
|
-
|
|
139
|
-
```bash
|
|
140
|
-
noto branch -r
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
Delete local branches:
|
|
144
|
-
|
|
145
|
-
```bash
|
|
146
|
-
noto branch delete
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
If you need to force delete a branch, you can use the force flag:
|
|
115
|
+
Create and switch to a new branch:
|
|
150
116
|
|
|
151
117
|
```bash
|
|
152
|
-
noto
|
|
118
|
+
noto checkout -b new-branch-name
|
|
153
119
|
```
|
|
154
120
|
|
|
155
121
|
## Pro Tips
|