Skip to content
View MikeFoden's full-sized avatar
đŸ˜€
đŸ˜€
Block or Report

Block or report MikeFoden

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
MikeFoden/README.md

Pinned

  1. XmlSorter XmlSorter Public archive

    C# 9 4

  2. Git Branch Cleanup Commands Git Branch Cleanup Commands
    1
    git fetch origin --prune
    2
    git branch -vv | grep 'origin/.*: gone]' | awk '{print $1}' | xargs git branch -d
  3. astrofox astrofox Public

    Forked from astrofox-io/astrofox

    Astrofox is a motion graphics program that lets you turn audio into amazing videos.

    JavaScript

  4. Git Aliases Git Aliases
    1
    #!/bin/sh
    2
    
                  
    3
    # Easily amend a commit (and to not screw up when misspelling)
    4
    git config --global alias.amend = commit --amend --no-edit
    5
    git config --global alias.ammend = commit --amend --no-edit