A smart wrapper for nodegit that simplifies Git operations in Node.js.
Go to file
2024-06-23 23:42:47 +02:00
.gitea/workflows fix(core): update 2023-11-15 15:15:18 +01:00
.vscode fix(core): update 2022-07-31 15:18:04 +02:00
test fix(core): update 2024-06-22 10:01:15 +02:00
ts fix(documentation): Remove outdated changelog entries 2024-06-23 23:37:29 +02:00
.gitignore fix(core): update 2020-08-15 13:51:24 +00:00
changelog.md fix(changelog): Update to neweset format. 2024-06-23 23:42:47 +02:00
LICENSE fix(core): update 2019-06-18 15:41:03 +02:00
npmextra.json update tsconfig 2024-04-14 17:38:19 +02:00
package.json 3.1.1 2024-06-23 23:37:30 +02:00
pnpm-lock.yaml feat(gitrepo): Enhance GitRepo to include commit date and version information 2024-06-23 21:05:50 +02:00
readme.hints.md update tsconfig 2024-04-14 17:38:19 +02:00
readme.md update tsconfig 2024-04-14 17:38:19 +02:00
tsconfig.json update npmextra.json: githost 2024-04-01 21:35:12 +02:00

@push.rocks/smartgit

smart wrapper for nodegit

Install

To install @push.rocks/smartgit, use the following command with npm:

npm install @push.rocks/smartgit --save

Or if you prefer using yarn:

yarn add @push.rocks/smartgit

Make sure you have node installed on your system to use this package.

Usage

This guide assumes familiarity with TypeScript and basic Git operations. The @push.rocks/smartgit module offers a sophisticated, promise-based interface to interact with Git repositories in a Node.js environment, abstracting over the isomorphic-git library and adding additional functionality.

Setting Up

First, you need to import Smartgit and other necessary classes from the package. This is also when you'd typically configure any additional settings or dependencies required by your project.

import { Smartgit } from '@push.rocks/smartgit';

// Initialize the Smartgit instance
const smartgit = new Smartgit();
await smartgit.init();

Creating, Cloning, and Opening Repositories

With Smartgit, you can easily manage local repositories by creating new ones, cloning existing repositories, or opening an already existing local repository.

Creating a New Repository

const pathToNewRepo = '/path/to/your/new/repo';
const newRepo = await smartgit.createRepoByInit(pathToNewRepo);

Cloning a Repository

const cloneUrl = 'https://github.com/yourusername/your-repo.git';
const pathToClone = '/path/to/clone/repo';
const clonedRepo = await smartgit.createRepoByClone(cloneUrl, pathToClone);

Opening an Existing Repository

const pathToExistingRepo = '/path/to/your/existing/repo';
const existingRepo = await smartgit.createRepoByOpen(pathToExistingRepo);

Working with Git Operations

Smartgit simplifies common Git operations, making it easy to execute commands like add, commit, push, and more programmatically.

Adding Changes

To stage changes, you can add all changes or specify particular files.

// Add all changes to staging
await existingRepo.addAll();

// Or specify particular files
await existingRepo.add(['file1.txt', 'path/to/file2.txt']);

Committing Changes

Once changes are staged, you can commit them.

await existingRepo.commit('Your commit message');

Pushing to a Remote

Before pushing, ensure a remote is set up correctly, then push your changes.

await existingRepo.ensureRemote('origin', 'https://github.com/yourusername/your-repo.git');
await existingRepo.pushBranchToRemote('main', 'origin');

Advanced Features

Smartgit also supports more advanced Git functionalities, such as dealing with branches, managing remotes, and checking repository status.

Listing Remotes

const remotes = await existingRepo.listRemotes();
console.log(remotes);

Working with Branches

Branch management such as creating new branches or checking out existing ones can be done through the underlying isomorphic-git functions, with Smartgit making the setup and usage straightforward.

Practical Tips

  • When dealing with asynchronous operations, especially in sequences that depend on the outcome of previous steps (e.g., staging, committing, and pushing), ensure proper error handling, either using .then().catch() chains or try/catch blocks with async/await.
  • For complex Git workflows, consider combining Smartgit's capabilities with other Node.js modules or scripts to automate and streamline your processes.

Conclusion

@push.rocks/smartgit provides a versatile and powerful toolkit for Git operations in Node.js applications. By abstracting the complexities of interacting with Git repositories, it enables developers to focus more on developing their logic and less on the intricacies of Git commands. Whether you're managing local repositories, automating deployment workflows, or integrating Git operations into your applications, Smartgit offers a comprehensive set of features to address your needs.

For further examples, contributions, and issues, please refer to the project's repository and consider contributing to or starring the project if you find it useful.

This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the license file within this repository.

Please note: The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.

Trademarks

This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.

Company Information

Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany

For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.

By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.