Maven (famous)@lemmy.zip to Programmer Humor@programming.dev · edit-23 months agoMicrosoft Please Fixlemmy.zipimagemessage-square336fedilinkarrow-up1895arrow-down123file-text
arrow-up1872arrow-down1imageMicrosoft Please Fixlemmy.zipMaven (famous)@lemmy.zip to Programmer Humor@programming.dev · edit-23 months agomessage-square336fedilinkfile-text
minus-squarebjorney@lemmy.calinkfedilinkarrow-up18arrow-down1·3 months agoGit doesn’t automatically recursively add all files in the directory to the repository though - VSCode decided that should be the default behavior, while other editors (intellij) ask if you want to add newly created files to version control
minus-squarehex@programming.devlinkfedilinkarrow-up1·3 months agoI just hate the vscode source control. It has always felt clunky and like it breaks things. It is way clearer to see what is happening the console
minus-squareApexHunter@lemmy.mllinkfedilinkarrow-up1arrow-down4·3 months agoThat’s how git works. Every file and subfolder under the repo’s root folder belongs to the repo.
Git doesn’t automatically recursively add all files in the directory to the repository though - VSCode decided that should be the default behavior, while other editors (intellij) ask if you want to add newly created files to version control
I just hate the vscode source control. It has always felt clunky and like it breaks things. It is way clearer to see what is happening the console
That’s how git works. Every file and subfolder under the repo’s root folder belongs to the repo.
What does
git add xxx
do then