yourFriend
yourFriend
CC#
Created by yourFriend on 11/27/2024 in #help
How to stop git from tracking all a folder(.vscode) and everything inside it.
Git is init in root say RootFolder which contain multiple projects say P1, P2 and so on and each project folder has .vscode folder. I have tried this from RootFolder git rm --cached -r .vscode/ But it says fatal: pathspec '.vscode/' did not match any files However it works from parent folders i.e. P1, P2, etc. And I have got hundreds of them.
5 replies
CC#
Created by yourFriend on 11/25/2024 in #help
Do C# dev kit extension requires internet connection to work?
No description
7 replies
CC#
Created by yourFriend on 11/24/2024 in #help
How to open brace on new line by default for C# or any language in vs code?
I want this by default:
if(condition)
{
code here;
}
if(condition)
{
code here;
}
Instead of:
if(condition){
code here;
}
if(condition){
code here;
}
8 replies