Skip to content
View pascalrogalla's full-sized avatar
🦊
Ring-ding-ding-ding-dingeringeding!
🦊
Ring-ding-ding-ding-dingeringeding!
  • @haeger-consulting
  • Bonn

Block or report pascalrogalla

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. pascalrogalla.github.io pascalrogalla.github.io Public

    GitHub Page

    CSS 1

  2. Custom zsh theme Custom zsh theme
    1
    local user="%{$fg_bold[blue]%}%n@%{$fg_bold[blue]%}%m%{$reset_color%}"
    2
    local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )"
    3
    PROMPT='${user} ${ret_status} %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)'
    4
    
                  
    5
    ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}"
  3. meltdownjs/meltdown meltdownjs/meltdown Public

    TypeScript 2

  4. List and delete branches whose remot... List and delete branches whose remote branch is gone
    1
    alias git-gone-l='git fetch --prune && (git branch -v | grep gone) | awk "{print \$1}"'
    2
    alias git-gone-D='git-gone-l | xargs git branch -D'
  5. git cheats git cheats
    1
    # shortform git commands
    2
    alias g='git'
    3
    
                  
    4
    # print your list of commits this month for a repo
    5
    git log --since='last month' --author="$(git config user.name)" --oneline