Other techs VS Code does not start from WSL due to collapted file VS Code doesn't start up from WSL… This problem occurred after showing a beautiful Windows blue screen!! It definitely b... 2024.12.13 Other techs
Other techs How to add name servers in WSL2 When I tried git clone in WSL2, it failed to resolve the host because the name server is not set correctly. I write down... 2024.12.11 Other techs
Other techs Git Ignore indexed file but cannot switch to a branch if it’s modified When we add a path to a directory or a file in .gitignore file, changes to those files are ignored. But sometimes we wan... 2024.05.24 Other techs
Other techs How to copy files from Windows to Linux running in Virtual Box I struggled to copy files from Windows Host to Linux running in VM.Setup the shared folderSet up a folder path where we ... 2023.07.03 Other techs
Other techs Git How to create/remove branches in Local and Remote repository There are some branches that are no longer needed. Then, remove them all at once. Let's use the combination of git branch -d, grep, and xargs. 2023.04.03 Other techs
Other techs Git How to undo a commit to remove some modifications Everyone can make a mistake. How can we undo a commit when we push a commit by mistake? How can we revert a commit from the middle of the history when the commit is no longer needed? 2023.03.22 Other techs
Other techs Git How to update all repos in a directory Are there many git repositories to update? This post is for you if you don't want to change the directory and git pull many times. Let's update them at once with find and xargs commands. 2023.03.13 Other techs
Other techs Linux How to rename multiple files at once I want to rename multiple files in the same directory at once with index. How can I do it on Linux? Let's combine use for-loop and ls command. Then, rename it in the loop. 2023.03.08 Other techs
Other techs Why does git submodule update not work!! The following command didn't update the submodule. Huh?git submodule updateNeither of the following ones updated it.git ... 2023.01.30 Other techs
Other techs Git How to show the current branch name on the terminal on WSL Why isn't the current branch name shown on the Terminal? I don't want to run "git status" every time I want to check the current branch. Let's set it up! 2023.01.27 Other techs