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

Block or report warm-ice0x00

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. Universal Git Script Universal Git Script
    1
    #!/bin/sh
    2
    [ -z "$1" ] && echo 'No repository URL provided!' >&2 && exit 1
    3
    rm -rf .git
    4
    git init
    5
    git remote add origin "$1"
  2. Universal Git Script (PowerShell Ver... Universal Git Script (PowerShell Version)
    1
    [CmdletBinding()] param([Parameter(Mandatory = $true)] [string]$Url)
    2
    $dotGitPath = Join-Path -Path $PWD -ChildPath .git
    3
    Remove-Item -LiteralPath $dotGitPath -Force -Recurse -ErrorAction SilentlyContinue
    4
    & git init
    5
    & git remote add origin $Url
  3. SivanLaai/rime-pure SivanLaai/rime-pure Public

    【rime 小狼毫\trime 同文】手机/PC一站式配置【简约皮肤\拼音搜狗词库\原创trime同文 四叶草 九宫格 拼音方案\四叶草拼音\四叶草地球拼音\小鹤双拼\极品五笔\QQ五笔\徐码\郑码】

    C 839 89