Files not ignored in gitignore VSTS

0

I am doing a shared project using VS Team Services, however there are some files that I am not able to ignore in .gitignore. How do you ignore them? file (.suo), folder (obj), and extension (.cache) Follow my .gitignore below

    # Built application files
*.apk
*.ap_
*.dll

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
x64/
build/
bld/
[Bb]in/
[Oo]bj/


# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# Intellij
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/dictionaries
.idea/libraries

# Keystore files
*.jks

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

# Google Services (e.g. APIs or Firebase)
google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json
/MapaMVC/.vs/AppFrete_Solution/v15/Server/sqlite3

#Compiler
*.suo
*.cache
build.force
/MapaMVC/AppFrete/AppFrete/obj/Debug/netstandard2.0
    
asked by anonymous 05.05.2018 / 22:14

1 answer

1

I used the existing gitignore file, but I already solved the problem using the absolute path to the folder where I wanted to block the upload files.

    
09.05.2018 / 22:17