Skip to content
View SAVE-UP's full-sized avatar
:octocat:
Building something Cool
:octocat:
Building something Cool
Block or Report

Block or report SAVE-UP

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 Loading

  1. Extract urls to junk data Extract urls to junk data
    1
    #!/usr/bin/env sh
    2
    
                  
    3
    # abort on errors
    4
    set -e
    5
    
                  
  2. OwnPlate French Traduction OwnPlate French Traduction
    1
    {
    2
      "serviceName": {
    3
        "ownPlate": "OwnPlate",
    4
        "omochikaeri": "おもちかえり.com"
    5
      },
  3. Github cheats Github cheats
    1
    git init            # initiates git in the current directory
    2
    git clone <address> # creates a git repo from given address (get the address from your git-server)
    3
    git clone <address> -b <branch_name> <path/to/directory>  # clones a git repo from the address into the given directory and checkout's the given branch
    4
    git clone <address> -b <branch_name> --single-branch  # Clones a single branch
    5