Skip to content

rorromr/ei4001

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EI4001

Torso lift mechanism

Instalación

Repositorio

git clone https://github.com/rorromr/ei4001.git
cd ei4001
git submodule init
git submodule update

Librerías Arduino

Para la instalación de librerías se crean enlaces simbolicos en el directorio ~/Arduino/libraries/.

cd ei4001/arduino
./install.sh

Comandos Git

Guía rápida Git

Commandos útiles

  • Clonar repositorio: git clone user@ip_server:repo
  • Crear rama: git checkout -b nueva_rama
  • Listar ramas: git branch -a
  • Bajar rama: git pull origin nombre_rama
  • Crear rama local y setear track remoto: git checkout -t origin/nombre_rama
  • Borrar rama local (-D para forzar): git branch -d nombre_rama
  • Borrar rama remota: git push origin :nombre-rama
  • Subir nueva rama con tracking: git push -u origin rama
  • Actualizar lista de ramas: git remote update origin --prune
  • Borrar rama local: git branch -d rama
  • Borrar rama remota: git push origin --delete rama

Markdown