What is the best way to work with uncommitted changes on Visual Studio Code? I seem to be experiencing difficulties with uncommitted changes while attempting to integrate an addition to my development project in Source Control using Visual Studio. Can someone assist?
please explain more your situation, as it’s normal to work with uncommitted changes, as any change is uncommitted before you commit them
Are you trying to pull from remote while you have uncommitted changes in your local branch? That’s the only thing I can think of which might be described that way.
If so, this has nothing to do with VS Code and it’s just Git. You can’t pull
while you have untracked changes locally. You can commit those changes, stash them, revert them, or add them to .gitignore
, depending on what you’ve changed and what you plan to do with those changes.
Thanks,
However, I had to generate a commit message from GitLens - Git supercharged which introduced a temporary file demonstrating object instantiation with and without constructor parameters for improved clarity in class usage examples. Currently working on it though.
Committing uncommitted changes to the source control for constructors with and without parameters to create classes and objects in C#.
That does not clear it, can you explain more what is your situation?