element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Chat (English) How do you version your PCBs and schematics?
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Autodesk EAGLE to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 4 replies
  • Subscribers 178 subscribers
  • Views 2201 views
  • Users 0 members are here
Related

How do you version your PCBs and schematics?

bmoe
bmoe over 12 years ago

Hi.

 

I just want to know how you decide versions on your PCBs and schematics.

 

For example:

1. You have a PCB version A and schematic version A and you just need to do a tiny fix(wich doesnt need anything in the schamatic to be changed) on the PCB wich will become version B.

 

2. You have a PCB version A and schematic version A, and then you have to change a component value(wich doesnt need anything in the PBC to be changed) in the schematic wich will become version B.

 

How do you handle versions on your PCB and schematic in these scenarios?

 

/Matias

  • Sign in to reply
  • Cancel
Parents
  • zainka
    zainka over 12 years ago

    On 11/26/2012 02:54 PM, Matias Sjögren wrote:

    Hi.

     

    I just want to know how you decide versions on your PCBs and schematics.

     

    For example:

    1. You have a PCB version A and schematic version A and you just need to do a tiny fix(wich doesnt need anything in the schamatic to be changed) on the PCB wich will become version B.

     

    2. You have a PCB version A and schematic version A, and then you have to change a component value(wich doesnt need anything in the PBC to be changed) in the schematic wich will become version B.

     

    How do you handle versions on your PCB and schematic in these scenarios?

     

    /Matias

     

     

    Hi

     

    I use git version control system and every changes is committed as in

    your option 1. (stored as an restoring point), and every milestone (your

    option 2.) is also tagged, which is basically a way of pinpointing

    important happenings in your design.

     

    You may then switch between different versions of your design with

    simple commands whenever needed.

     

    If you have never used version control software (VCS's) before, this can

    be a bit hard to understand out of the blue (If you are familiar with

    it, stop reading), but the simplest and "popular scientifically" way of

    describing it is to call VCS a dynamic database that keeps track of your

    file changes.

     

    There is many VCS solutions and git is just one of them and which was

    created by Linus Torvald, you know, the Linux guy. Then you have SVN and

    CSV and many others. I find git very usable and handy for my eagle

    designs. I also use it for keeping track of my library and the sw

    projects +++.

     

    This is helpful reading

    http://git-scm.com/book/en/

     

    Breg

    Vidar (Z)

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • zainka
    zainka over 12 years ago

    On 11/26/2012 02:54 PM, Matias Sjögren wrote:

    Hi.

     

    I just want to know how you decide versions on your PCBs and schematics.

     

    For example:

    1. You have a PCB version A and schematic version A and you just need to do a tiny fix(wich doesnt need anything in the schamatic to be changed) on the PCB wich will become version B.

     

    2. You have a PCB version A and schematic version A, and then you have to change a component value(wich doesnt need anything in the PBC to be changed) in the schematic wich will become version B.

     

    How do you handle versions on your PCB and schematic in these scenarios?

     

    /Matias

     

     

    Hi

     

    I use git version control system and every changes is committed as in

    your option 1. (stored as an restoring point), and every milestone (your

    option 2.) is also tagged, which is basically a way of pinpointing

    important happenings in your design.

     

    You may then switch between different versions of your design with

    simple commands whenever needed.

     

    If you have never used version control software (VCS's) before, this can

    be a bit hard to understand out of the blue (If you are familiar with

    it, stop reading), but the simplest and "popular scientifically" way of

    describing it is to call VCS a dynamic database that keeps track of your

    file changes.

     

    There is many VCS solutions and git is just one of them and which was

    created by Linus Torvald, you know, the Linux guy. Then you have SVN and

    CSV and many others. I find git very usable and handy for my eagle

    designs. I also use it for keeping track of my library and the sw

    projects +++.

     

    This is helpful reading

    http://git-scm.com/book/en/

     

    Breg

    Vidar (Z)

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube