Skip to content

a library of common helper utilities for working with commands and git

License

Notifications You must be signed in to change notification settings

jenkins-x/jx-helpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7052309 · Apr 4, 2025
Jan 18, 2025
Oct 18, 2024
Oct 18, 2024
Oct 25, 2022
Jan 5, 2024
Mar 13, 2025
Dec 30, 2020
Jun 26, 2020
Aug 13, 2020
Jan 18, 2025
Jun 14, 2022
Jun 14, 2022
Apr 13, 2021
Jun 26, 2020
Apr 4, 2025
Apr 4, 2025

Repository files navigation

jx-helpers

Documentation Go Report Card Releases LICENSE Slack Status

jx-helpers is a small library of helper functions for working with the commands, git, scm and kubernetes

Refactoring notes

If you are refactoring code from the v2 branch of jenkins-x/jx out into a separate library/microservice here's some tips on switching code over to jx-helpers

The util package has been split up into separate packages:

Files:

  • util.Copy* => files.Copy*
  • util.Dir* => files.Dir*
  • util.File* => files.File*
  • util.IO* => files.IO*
  • util.Un* => files.Un*

Strings:

  • util.String* => stringhelpers.String*
  • util.Url* => stringhelpers.Url*

Git:

  • gits.Gitter => gitclient.Interface then the git commands are simple CLI arguments like:
results, err := gitClient.Command(dir, "commit", "-a", "-m", "my message")

Cobra:

  • cmd/* => cobras/*