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

Block or report ihrankouski

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. How effectively delete a git submodule. How effectively delete a git submodule.
    1
    To remove a submodule you need to:
    2
    
                  
    3
    - Delete the relevant section from the .gitmodules file.
    4
    - Stage the .gitmodules changes git add .gitmodules
    5
    - Delete the relevant section from .git/config.
  2. One liner for deleting images from a... One liner for deleting images from a v2 docker registry
    1
    # One liner for deleting images from a v2 docker registry
    2
    
                  
    3
    Just plug in your own values for registry and repo/image name.
    4
    
                  
    5
    ```bash