Skip to content
View bogy0's full-sized avatar
  • Budapest, Hungary

Highlights

  • Pro

Organizations

@IBM
Block or Report

Block or report bogy0

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. IBM/video-streaming-developer-docs IBM/video-streaming-developer-docs Public

    MDX 10 66

  2. carbon-components-react carbon-components-react Public

    Forked from carbon-design-system/carbon-components-react

    React components for the Carbon Design System

    JavaScript

  3. gatsby-theme-carbon gatsby-theme-carbon Public

    Forked from carbon-design-system/gatsby-theme-carbon

    A Carbon inspired Gatsby theme

    JavaScript

  4. GetStream/stream-cli GetStream/stream-cli Public

    Configure & manage Stream applications from the command line. 🚀

    Go 84 19

  5. Commit hook to parse actual branch n... Commit hook to parse actual branch name. Try to find JIRA issue number in the branch name and ammend that to the end of the commit message.
    1
    TICKET_ID=$(git rev-parse --abbrev-ref HEAD 2> /dev/null | grep -oE "[A-Z]+-[0-9]+")
    2
    if [ -n "$TICKET_ID" ]; then
    3
        echo "$(cat $1)\n$TICKET_ID" > $1
    4
    fi