Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Which files do I ignore in my version control?

  1. #1
    Forum VIP
    Join Date
    Jun 2011
    Posts
    317
    My Mood
    Bored
    Thanks
    47
    Thanked 89 Times in 74 Posts
    Blog Entries
    4

    Default [SOLVED] Which files do I ignore in my version control?

    I was having a look at the ant build file in my android project. It mentioned that local.properties is auto-generated and should not be included in version control. Does anybody know if there are other files which should be omitted?
    Last edited by ChristopherLowe; January 5th, 2012 at 11:43 PM.


  2. #2
    Forum VIP
    Join Date
    Jun 2011
    Posts
    317
    My Mood
    Bored
    Thanks
    47
    Thanked 89 Times in 74 Posts
    Blog Entries
    4

    Default Re: Which files do I ignore in my version control?

    Sorry to answer my own question but I found the answer here.

    # built application files
    *.apk
    *.ap_
     
    # files for the dex VM
    *.dex
     
    # Java class files
    *.class
     
    # generated files
    bin/
    gen/
     
    # Local configuration file (sdk path, etc)
    local.properties

Similar Threads

  1. Free Version control
    By Melawe in forum The Cafe
    Replies: 7
    Last Post: December 26th, 2011, 08:25 AM
  2. Version issue? Or what else can it be?
    By SxN in forum What's Wrong With My Code?
    Replies: 5
    Last Post: October 17th, 2011, 05:53 PM
  3. How do I make this Palindrome tester ignore punctuation?
    By trogan234 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: October 3rd, 2011, 04:43 AM
  4. Seraching through files in a folder for a pattern match inside the files.
    By dazzabiggs in forum What's Wrong With My Code?
    Replies: 4
    Last Post: May 2nd, 2011, 08:35 AM
  5. Replies: 1
    Last Post: March 22nd, 2011, 06:59 PM