Skip to content
View cranberyxl's full-sized avatar

Organizations

@yarnbasket

Block or report cranberyxl

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  1. apollo-cursor-pagination-ts apollo-cursor-pagination-ts Public

    Relay's Connection implementation for Apollo Server GraphQL library

    TypeScript

  2. Useful git bash scripts Useful git bash scripts
    1
    # List remote branches already merged to main 
    2
    ```sh
    3
    git fetch origin > /dev/null; git checkout origin/main; for branch in $(git branch -a --merged | grep remotes/origin | grep -v main | grep -v 'no branch'| sed -e 's/\s*remotes\///'); do echo "${branch:7}"; done; git checkout main
    4
    ```
    5