Skip to content
View tylertadej's full-sized avatar

Block or report tylertadej

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. Pro Git commands for Git users Pro Git commands for Git users
    1
    # Git Your Act Together
    2
    
                  
    3
    ## Git Setup
    4
    ###### Global settings stored in a system ```.gitconfig``` file; view file using ```$ cat ~/.gitconfig```
    5
    ###### Single repo settings stored in ```/.git/config``` in your project folder
  2. Terminal (CLI) secrets Terminal (CLI) secrets
    1
    ## Command Line basics
    2
    ```
    3
    $ ls -a     # lists all contents of a directory, including hidden files and directories
    4
    ```
    5
    ```
  3. Chrome DevTools tips and tricks Chrome DevTools tips and tricks
    1
    ## Chrome DevTools tips and tricks
    2
    ###### Speed up your workflow with these Mac shortcuts
    3
    ```
    4
    Cmd-Alt+I               # Open DevTools
    5
    ```
  4. mac-os-cheatsheet.md mac-os-cheatsheet.md
    1
    ### MacOS cheatsheet
    2
    
                  
    3
    ```
    4
    # show hidden files
    5
    Cmd+Shift+.
  5. docker-cli.md docker-cli.md
    1
    ## Docker cheat sheet
    2
    
                  
    3
    ```shell
    4
    # bash into container
    5
    docker exec -it [container-id] bash