Changes commit in Xamarin Forms

1

Every time I change or create a new file in my project in xamarin forms and make Clear and Rebuild in the project, it generates files in the debug folder, and when I commit to the repository I have to upload those files debug.

How to ignore these files to upload only what I have actually altered or created?

    
asked by anonymous 19.06.2017 / 18:07

1 answer

4

This is not about Xamarin or .NET.

This is directly related to your source code version.

I think you're using git, right?

There is a file called .gitignore that is in your local repository. Here you can tell which files and folders to ignore.

If you have already committed the files and folders that you do not want to commit, you must remove them from the repository. The fact of including .gitignore will not remove them from there. This and this are also answered on how to remove files from the repository.

See more about ignoring files in git and how to mount your% gcc-     

19.06.2017 / 18:12