@@ -14,53 +14,53 @@ gulp.task('init', function() {
14
14
15
15
gulp . task ( 'add' , function ( ) {
16
16
gulp . src ( './*' )
17
- . pipe ( git . add ( ) ) ;
17
+ . pipe ( git . add ( ) ) ;
18
18
} ) ;
19
19
20
20
21
21
// Commit files
22
22
23
23
gulp . task ( 'commit' , function ( ) {
24
24
gulp . src ( './*' , { buffer :false } )
25
- . pipe ( git . commit ( 'initial commit' ) ) ;
25
+ . pipe ( git . commit ( 'initial commit' ) ) ;
26
26
} ) ;
27
27
28
28
gulp . task ( 'commitDelayed' , function ( ) {
29
29
gulp . src ( './*' )
30
- . pipe ( git . commit ( function ( ) { return 'commiting at exactly ' + new Date ( ) . toISOString ( ) ; } ) ) ;
30
+ . pipe ( git . commit ( function ( ) { return 'commiting at exactly ' + new Date ( ) . toISOString ( ) ; } ) ) ;
31
31
} ) ;
32
32
33
33
// Commit files with arguments
34
34
gulp . task ( 'commitopts' , function ( ) {
35
35
gulp . src ( './*' )
36
- . pipe ( git . commit ( 'initial commit' , { args : '-v' } ) ) ;
36
+ . pipe ( git . commit ( 'initial commit' , { args : '-v' } ) ) ;
37
37
} ) ;
38
38
39
39
// Commit files using raw arguments, without message checking
40
40
gulp . task ( 'commitraw' , function ( ) {
41
41
gulp . src ( './*' )
42
- . pipe ( git . commit ( undefined , {
43
- args : '-m "initial commit"' ,
44
- disableMessageRequirement : true
45
- } ) ) ;
42
+ . pipe ( git . commit ( undefined , {
43
+ args : '-m "initial commit"' ,
44
+ disableMessageRequirement : true
45
+ } ) ) ;
46
46
} ) ;
47
47
48
48
// Commit files using raw arguments, without message checking
49
49
gulp . task ( 'commitmulti' , function ( ) {
50
50
gulp . src ( './*' )
51
- . pipe ( git . commit ( [ 'initial commit' , 'additional message' ] ) ) ;
51
+ . pipe ( git . commit ( [ 'initial commit' , 'additional message' ] ) ) ;
52
52
} ) ;
53
53
54
54
// Commit files using the multiline option
55
55
gulp . task ( 'commitmultiline' , function ( ) {
56
56
gulp . src ( './*' )
57
- . pipe ( git . commit ( [ 'initial commit' , 'additional message' ] , { mutiline : true } ) ) ;
57
+ . pipe ( git . commit ( [ 'initial commit' , 'additional message' ] , { mutiline : true } ) ) ;
58
58
} ) ;
59
59
60
60
// Commit files with multiline messages
61
61
gulp . task ( 'commitmultiline' , function ( ) {
62
62
gulp . src ( './*' )
63
- . pipe ( git . commit ( 'initial commit\nadditional message' ) ) ;
63
+ . pipe ( git . commit ( 'initial commit\nadditional message' ) ) ;
64
64
} ) ;
65
65
66
66
// Clone remote repo to current directory ($CWD/git-test)
@@ -188,7 +188,7 @@ gulp.task('push-tag', function() {
188
188
189
189
gulp . task ( 'rm' , function ( ) {
190
190
gulp . src ( './delete' )
191
- . pipe ( git . rm ( { args : '-f' } ) ) ;
191
+ . pipe ( git . rm ( { args : '-f' } ) ) ;
192
192
} ) ;
193
193
194
194
gulp . task ( 'addSubmodule' , function ( ) {
0 commit comments