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) Does the library editor tool lock a file while editing it?
  • 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
  • State Suggested Answer
  • Replies 8 replies
  • Answers 2 answers
  • Subscribers 180 subscribers
  • Views 719 views
  • Users 0 members are here
Related

Does the library editor tool lock a file while editing it?

Former Member
Former Member over 11 years ago

I am working in a git controlled evnvironment with several other engineers. Currently we each have a local copy of our libraries that are sync'd through git. The problem of merging libraries files after a Git pull is becoming excessive.

 

We'd like to store all files in a folder on an NFS server accessable by all users. The libraries would still be version controlled by git, with a periodic commits. When an engineer is editing a library, the file is read only to all other users. the other users can view but not concurrently edit the file.

 

does the eagle library editor tool lock open files?

 

If not, is it possible to easily integrate this feature? without any other version controll or check-out software.

  • Sign in to reply
  • Cancel
Parents
  • autodeskguest
    0 autodeskguest over 11 years ago

    Jesse Banks wrote on Tue, 13 May 2014 15:05

    I am working in a git controlled evnvironment with several other

    engineers. Currently we each have a local copy of our libraries that

    are

    sync'd through git. The problem of merging libraries files after a Git

    pull is becoming excessive.

     

    We'd like to store all files in a folder on an NFS server accessable

    by

    all users. The libraries would still be version controlled by git,

    with

    a periodic commits. When an engineer is editing a library, the file is

    read only to all other users. the other users can view but not

    concurrently edit the file.

     

    does the eagle library editor tool lock open files?

     

    If not, is it possible to easily integrate this feature? without any

    other version control or check-out software.

     

     

    Hello Jesse,

     

    Don't worry about all the haters, you're doing the right thing using

    serious revision control for your libraries.  I have worked at a lot of

    companies and library mismanagement is the number one reason boards come

    back not working.  I have over 1500 unique devices in my library and it's

    been in SVN control since the beginning (over a decade now).

     

    I would however recommend that you don't use an NFS mount but force

    everyone to use revision control client to check out latest version to

    their machine.  I think that is cleaner and you can then update your local

    copy of the library at a time suitable for your project (which might not be

    suitable for another).

     

    The short answer is don't expect EAGLE to change it's behaviour.  And I'm

    not sure I want it to.

     

    Use your revision control client to get the effect you would like.  I

    haven't used git but if SVN clients can be configured to auto-lock certain

    files then certainly git should be able to do it.  If I lock the file using

    SVN then no one else can get a lock on it.  And the file is read-only on

    the file system until SVN gets a lock.  I think that is the effect you are

    after.

     

    That would be my advise.  Another reason for wanting a full update report

    so you can see what has changed in the library under your feet -- that

    would help you out greatly in your situation (see thread from a few days

    ago on that topic).

     

    Cheers,

     

    James.

    --

    James Morrison  ~~~  Stratford Digital

     

    Specializing in CadSoft EAGLE

    • Online Sales to North America

    • Electronic Design Services

     

    Take advantage of v7 License Promotion right now at

    http://www.eaglecentral.ca

    --

    Web access to CadSoft support forums at www.eaglecentral.ca.  Where the CadSoft EAGLE community meets.

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • AnalogNotes
    0 AnalogNotes over 11 years ago in reply to autodeskguest

    James Morrison wrote:

    I haven't used git but if SVN clients can be configured to auto-lock certain files then certainly git should be able to do it.

     

    Git really has no concept of a central server, so there is nothing built in to do any kind of file locking.  Because you have your own copy of everything, it is assumed that you have absolute control over your copy and that nobody else can get to it, so no locking is needed.  It's the same with all distributed version control systems.

     

    That said, apparently there is an access control layer that you can install over Git that gives you more of an SVN-like experience: Gitolite

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • AnalogNotes
    0 AnalogNotes over 11 years ago in reply to autodeskguest

    James Morrison wrote:

    I haven't used git but if SVN clients can be configured to auto-lock certain files then certainly git should be able to do it.

     

    Git really has no concept of a central server, so there is nothing built in to do any kind of file locking.  Because you have your own copy of everything, it is assumed that you have absolute control over your copy and that nobody else can get to it, so no locking is needed.  It's the same with all distributed version control systems.

     

    That said, apparently there is an access control layer that you can install over Git that gives you more of an SVN-like experience: Gitolite

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • 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