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

Block or report carlolars

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. wsl-gap wsl-gap Public

    wsl-gap is a gpg-agent proxy for closing the gap between WSL and the Windows gpg-agent.

    Rust 8 1

  2. HOWTO: Use WSL and its Git in a mixe... HOWTO: Use WSL and its Git in a mixed development environment
    1
    How to setup a development environment where Git from WSL integrates with native Windows applications, using the Windows home folder as the WSL home and using Git from WSL for all tools.
    2
    
                  
    3
    **Note** if using Git for Windows, or any tool on the Windows side that does not use Git from WSL then there will likely be problems with file permissions if using those files from inside WSL.
    4
    
                  
    5
    ## Tools
  3. Use bash from WSL as sh.exe for GitK... Use bash from WSL as sh.exe for GitKraken (5.0.4) for Windows
    1
    @echo off
    2
    REM Make sure that the path to the script is correct!
    3
    @bash -l -c "~/bin/gitkraken-wsl-bash.sh %*"
  4. Yet another git-serve alias. Yet another git-serve alias.
    1
    ```ini
    2
    [alias]
    3
        serve = "!f(){ printf \"Starting git-daemon for $(pwd) @ 'git://$(hostname)/$(basename $(pwd))'.\nExample: git clone git://$(hostname)/$(basename $(pwd)) [<directory>]\n\"; git daemon --base-path=.. --reuseaddr --informative-errors --verbose --export-all ../$(basename $(pwd)) ; }; f"
    4
    ```
    5