Skip to content

Commit 98bfcbf

Browse files
committed
updated simple-git imports
1 parent b3de787 commit 98bfcbf

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/finish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const git = require('simple-git/promise')();
1+
const git = require('simple-git')();
22
const Branch = require('./model/branch');
33
const utils = require('./utils');
44
const { getConfig } = require('./config');

src/open.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const open = require('open');
22
const _ = require('lodash');
3-
const git = require('simple-git/promise')();
3+
const git = require('simple-git')();
44
const utils = require('./utils');
55

66
/**

src/pr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const git = require('simple-git/promise')();
1+
const git = require('simple-git')();
22
const open = require('open');
33
const _ = require('lodash');
44
const utils = require('./utils');

src/promote.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const git = require('simple-git/promise')();
1+
const git = require('simple-git')();
22
const Branch = require('./model/branch');
33
const { getConfig, configFileName } = require('./config');
44
const utils = require('./utils');

src/rename.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const git = require('simple-git/promise')();
1+
const git = require('simple-git')();
22
const Branch = require('./model/branch');
33
const { getConfig } = require('./config');
44
const utils = require('./utils');

src/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const git = require('simple-git/promise')();
1+
const git = require('simple-git')();
22
const { getConfig } = require('./config');
33
const utils = require('./utils');
44

src/update.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
const git = require('simple-git/promise')();
2+
const git = require('simple-git')();
33
const Branch = require('./model/branch');
44
const { getConfig } = require('./config');
55
const utils = require('./utils');

src/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
const git = require('simple-git/promise')();
2+
const git = require('simple-git')();
33
const {getConfig} = require('./config');
44
const _ = require('lodash');
55
const utils = {};

0 commit comments

Comments
 (0)