Skip to content
View tanshuai's full-sized avatar
👨‍💻
Coding for dream
👨‍💻
Coding for dream

Sponsors

@fengpxu
Block or Report

Block or report tanshuai

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

    Web3 YouTube Alternative - fully decentralized media platform and blockchain-based marketplace

    JavaScript 1.2k 399

  2. open.to open.to Public

    Open.to implementation

    HTML 2

  3. electron-playwright-e2e-test-quick-start electron-playwright-e2e-test-quick-start Public

    Electron Playwright Example on GitHub Actions Workflow for CI/CT & E2E Testing

    JavaScript 9 5

  4. spectron-quick-start spectron-quick-start Public

    Clone and run for a quick way to see Spectron in action for Electron E2E Test

    JavaScript 2

  5. Delete Remote Tags on Git by Pattern Delete Remote Tags on Git by Pattern
    1
    For example, delete all remote tags with name prefix builds (build-xxx, buildxxx...):
    2
    
                  
    3
    ```bash
    4
    git fetch --tags --all 
    5
    git push -d origin $(git tag -l "build*")
  6. List all branches of git repo with c... List all branches of git repo with creator name and email
    1
    ```bash
    2
    git for-each-ref --format='%(committerdate) %09 %(authorname) %(authoremail) %09 %(refname)' --sort=committerdate
    3
    ```