Files not ignored in gitignore VSTS

Asked

Viewed 141 times

0

I’m doing a shared project using VS Team Services, but there are some files I’m not able to ignore on .gitignore. How do I 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
  • How did you generate . gitignore?

  • Did you generate . gitignore after adding these files? If so, you’ll have to remove them from git and then add them to . gitignore.

1 answer

1


I used the existing gitignore file, but I have already solved the problem using the absolute path to the folder in which I wanted to block the files from going up.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.