Git in windows

Git in windows

TogoFire

Git in window $hit:


Fix gitclone:

error: invalid path

fatal: unable to checkout working tree

warning: Clone succeeded, but checkout failed.

You can inspect what was checked out with 'git status'


https://stackoverflow.com/questions/63727594/github-git-checkout-returns-error-invalid-path-on-windows

https://stackoverflow.com/questions/70132754/git-error-invalid-path-during-git-checkout

https://brendanforster.com/notes/fixing-invalid-git-paths-on-windows/


git config core.protectNTFS false

git config --global core.protectNTFS false

git clone -c core.protectNTFS=false


Enable case sensitive folders:

warning: the following paths have collided (e.g. case-sensitive paths

on a case-insensitive filesystem) and only one from the same

colliding group is in the working tree

https://stackoverflow.com/questions/63468346/case-sensitive-path-collisions-on-case-insensitive-file-system-when-i-do-git-clo

https://www.howtogeek.com/354220/how-to-enable-case-sensitive-folders-on-windows-10/


fsutil.exe file SetCaseSensitiveInfo "C:\Users\YourUSER\Documents\GitHub" enable


NANO:

https://superuser.com/questions/1493801/how-to-install-the-nano-cli-editor-on-windows-10


Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))


choco install -y nano

nano


git config --global core.editor "nano"


Recommended explorer:

Q-Dir: https://www.softwareok.com/?Download=Q-Dir&goto=../Download/Q-Dir_Installer_x64.zip


VSCODIUM: https://vscodium.com

GIT: https://git-scm.com

BEST SSH: https://tabby.sh

Zsh: https://dev.to/zinox9/installing-zsh-on-windows-37em

https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH


Report Page