File tree 4 files changed +19
-13
lines changed
4 files changed +19
-13
lines changed Original file line number Diff line number Diff line change
1
+ ## 更新日志
2
+
3
+ ### 1.0.3
4
+
5
+ - fix: 修复 ` r ` 命令
6
+
7
+ ### 1.0.2
8
+
9
+ - ` l ` 命令变更为 ` b `
10
+
11
+ ### 1.0.1
12
+
13
+ 新增 ` a cm r p pr pl co cb ` 命令
14
+
15
+ ### 1.0.0
16
+
17
+ 发布正式版本
Original file line number Diff line number Diff line change @@ -29,14 +29,3 @@ $ npm i -g @lxfu/gm
29
29
- ` gm co branch ` : 相当于 ` git checkout branch `
30
30
- ` gm cb branch ` : 相当于 ` git checkout -b branch `
31
31
32
- ## 更新日志
33
-
34
- ### 1.0.2
35
-
36
- - ` l ` 命令变更为 ` b `
37
- ### 1.0.1
38
-
39
- 新增 ` a cm r p pr pl co cb ` 命令
40
- ### 1.0.0
41
-
42
- 发布正式版本
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lxfu/gm" ,
3
- "version" : " 1.0.2 " ,
3
+ "version" : " 1.0.3 " ,
4
4
"description" : " Git branch manger" ,
5
5
"bin" : " ./bin/index.js" ,
6
6
"scripts" : {},
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ program
40
40
. description ( "Git commit information" )
41
41
. action ( onCommit ) ;
42
42
43
- program . command ( "r <commit id>" ) . description ( "Git reset" ) . action ( onReset ) ;
43
+ program . command ( "r <commit- id>" ) . description ( "Git reset" ) . action ( onReset ) ;
44
44
45
45
program . command ( "p" ) . description ( "Git push" ) . action ( onPush ) ;
46
46
program
You can’t perform that action at this time.
0 commit comments