1.2.4 • Published 11 months ago

maq-git-buddy v1.2.4

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

Git Buddy

Installation

npm -g maq-git-buddy

Features

  • Action: Commit And Push

    • -m: The commit message for the push operation.
    • -e: An optional emoji for the commit message.
    • -t: The type of the resulting commit. (Based on Commit Types)
    • --amend: A flag indicating whether to amend the previous commit.
    • Example: npx git-buddy push -t feat -m "Added Feature" --amend
    • Example: npx git-buddy push -t fix -m "Fixed Bug"
  • Action: Commit only

    • Example: npx git-buddy commit -t feat -m "Message"
  • Action: squash (Combine commits)

    • n: The number of commits to squash (default is 1).
    • Example npx git-buddy squash -n 4 -t feat -m "Squash Commits"
  • Action: pull

    • Example: npx git-buddy pull
  • Action: push_origin

    • --f: A flag indicating whether to force-push to the origin.
    • Example: npx git-buddy push_origin
  • Action: reset (Completely Deleting commits from remote)

    • n: The number of commits to reset (default is 1).
    • Example: npx git-buddy reset -n 5

Commit-Types

Commit TypeTitleDescriptionEmoji
featFeatureA new feature
fixBug FixesA bug Fix🐛
docsDocumentationDocumentation only changes📚
styleStylesChanges that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)💎
refactorCode RefactoringA code change that neither fixes a bug nor adds a feature📦
perfPerformance ImprovementsA code change that improves performance🚀
testTestsAdding missing tests or correcting existing tests🚨
buildBuildsChanges that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)🛠️
ciContinuous IntegrationsChanges to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)⚙️
choreChoresOther changes that don't modify src or test files♻️
revertRevertsReverts a previous commit🗑️
1.2.4

11 months ago

1.2.3

11 months ago

1.2.2

11 months ago

1.2.1

11 months ago

1.2.0

11 months ago

1.1.0

11 months ago

1.0.0

11 months ago