smartgit/ts/smartgit.push.ts

16 lines
643 B
TypeScript
Raw Normal View History

2016-07-03 02:03:15 +00:00
import * as plugins from "./smartgit.plugins";
import * as helpers from "./smartgit.helpers";
2016-07-04 02:59:39 +00:00
export let push = (dirPathArg:string, remoteNameArg:string = "", remoteBranchArg:string = "") => {
2016-07-03 02:03:15 +00:00
let done = plugins.Q.defer();
if(!helpers.isGitDirectory(dirPathArg)){
2016-07-05 01:47:38 +00:00
let err = new Error("smartgit.push expects a valid git directory");
plugins.beautylog.error(err.message);
done.reject(err);
2016-07-03 02:03:15 +00:00
return done.promise;
}
// if everything seems allright proceed
2016-07-04 02:59:39 +00:00
plugins.shelljs.exec(`(cd ${dirPathArg} && git push ${remoteNameArg} ${remoteBranchArg})`);
2016-07-03 02:03:15 +00:00
done.resolve();
return done.promise;
};