1.2.0 • Published 1 year ago

git-in-nodejs v1.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

git-in-nodejs

basically makes SimpleGit even simpler

  • npm install git-in-nodejs

    Importing and creating a instance from a local repository

     const GitController = require("git-in-nodejs");
    
     let repoPath = 'path/to/project'
     let branch = 'main'
    
     const repo = new GitController({ repoPath, branch });

    cloning repository

     let destPath = "path/to/clone/<RepoFolderName>";
     let branch = "main";
     
     const repo = await GitController.clone(destPath, branch, "https://github.com/<username>/<repo-name>");

    making actions

     let repoPath = "path/to/clone/<RepoFolderName>";
     let branch = "main";
    
     const repo = new GitController({repoPath, branch})
    
     await repo.pull();
     await repo.commitItem("commiting a single file", "path/to/file.txt")
     await repo.commitAll("commiting all files from git-in-nodejs")
     await repo.push();
1.2.0

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago