User Tools

Site Tools


geda

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
geda [2015/08/28 12:07] sdoltgeda [2019/08/29 12:04] (current) – [Create a new project] maferreira
Line 23: Line 23:
   * Launch install script (./Libs/install.sh)   * Launch install script (./Libs/install.sh)
 <code bash> <code bash>
-  mkdir ${HOME}/Projects +  mkdir ~/Projects 
-  cd ${HOME}/Projects+  cd ~/Projects
   mkdir mynewproject   mkdir mynewproject
   cd mynewproject   cd mynewproject
   git init   git init
   git submodule init   git submodule init
-  git submodule add git@git.bolay.co:gEda_Library Libs+  git submodule add git@git.bolay.co:gEDA_library.git Libs
   cp Libs/Config/gitignore .gitignore   cp Libs/Config/gitignore .gitignore
   ./Libs/install.sh   ./Libs/install.sh
 +</code>
 +
 +When cloning a project from git.bolay.co, don't forget to do:
 +<code bash>
 +  git clone git@git.bolay.co:MyProject.git
 +  git submodule init
 +  git submodule update
 +  
 +  git pull origin <branch>  
 +</code>
 +
 +Or 
 +
 +<code bash>
 +  git clone --rerursive git@git.bolay.co:MyProject.git
 +  cd MyProject
 +  git pull origin <branch>
 +</code>
 +
 +When you want to modify a libray:
 +<code bash>
 +  ./Libs/install.sh
 +  cd Libs/
 +  git checkout origin/develop # Don't forget
 +  
 +  # Do something
 +  git commit -am "Message like Add DS18B20.sym"
 +  git push # Don't forget
 +  cd ..
 +  git commit -am "Update gEda Library"
 +  
 </code> </code>
  
Line 200: Line 231:
  
 For more information, please visit : [[http://www.brorson.com/gEDA/land_patterns_20070818.pdf]] For more information, please visit : [[http://www.brorson.com/gEDA/land_patterns_20070818.pdf]]
 +or another link for the same doc [[https://github.com/evanfarrar/opensprints/raw/0b994c2b6b539b8a3beab4ea42a6447f10e396a3/hardware/interface_board/geda/docs/land_patterns_20070818.pdf]]
 ===== Schematic to PCB ===== ===== Schematic to PCB =====
  
geda.1440763631.txt.gz · Last modified: 2015/08/28 12:07 by sdolt