Skip to content
View toterGott's full-sized avatar
🌱
🌱

Block or report toterGott

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. article-storage article-storage Public

    Telegram article storage bot

    Rust 1

  2. archcraft archcraft Public

    Archcraft server configuration

  3. Simple script for application deploy... Simple script for application deployment on each push
    1
    #!/bin/bash
    2
    # run as: nohup bash ci-cd.sh > /dev/null 2>&1 &
    3
    while true
    4
    do
    5
    	git pull > /dev/null 2>&1
  4. Remove local branches that deleted o... Remove local branches that deleted on remote
    1
    git fetch --prune
    2
    git branch -vv | grep ': gone]'|  grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -d