Skip to content
View smootoo's full-sized avatar
Block or Report

Block or report smootoo

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. TableDiff TableDiff Public

    Diff tables taking account of their structure

    Scala 11 2

  2. script to interactively git rebase c... script to interactively git rebase commits that have a single character '.' as the commit message
    1
    #!/bin/bash
    2
    # script to interactively git rebase commits that have a single character '.' as the commit message
    3
    # onto the first commit that isn't just a '.'
    4
    squashLine=$(git log --oneline | grep -n -m 1 --perl-regexp "^[\da-f]*\s[^.]")
    5
    lineNumber=$(echo ${squashLine} | cut -d : -f 1)