Skip to content
View maxRN's full-sized avatar
🏠
Working from home
🏠
Working from home
  • TU Dresden
  • Dresden, Germany
Block or Report

Block or report maxRN

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. Fix author of multiple commits Fix author of multiple commits
    1
    1. Set correct user name and email in current repo/directory.
    2
       1. `git config --local user.name "FirstName LastName"`
    3
       2. `git config --local user.email "name@domain.org"`
    4
    1. `git rebase --onto HEAD~6 --exec "git commit --amend --reset-author --no-edit" HEAD~6`
    5
    1. This will change the author metadata of your last 6 commits. 
  2. PDF Cheatsheet PDF Cheatsheet
    1
    ### How to remove password from PDF
    2
    
                  
    3
    - Install `qpdf`
    4
    
                  
    5
    ```shell