You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have a number of files and folders that are generated by the build output of your program. In general, we only want to put source code, not binaries or other generated data, into version control.
You have a number of files and folders that are generated by the build output of your program. In general, we only want to put source code, not binaries or other generated data, into version control.
One way to deal with this is to add a
.gitignore
file that states which files and folders should be ignored by git. Here's an example of one for Visual Studio projects: https://github.com/github/gitignore/blob/master/VisualStudio.gitignore and for C# specifically https://gist.github.com/kmorcinek/2710267.You can
git rm -fr path
to remove things you don't want in there.The text was updated successfully, but these errors were encountered: