Repository

From Rsewiki
Revision as of 14:35, 28 June 2017 by Jca (talk | contribs) (Created page with " Back to Flexbot main page =Git repository= Project files can be found here. For the time beeing there is 3Dprinter files (*.stl) and some documentation files (mostly p...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Back to Flexbot main page

Git repository

Project files can be found here.

For the time beeing there is 3Dprinter files (*.stl) and some documentation files (mostly product specification)

Use this page to browse: https://repos.gbar.dtu.dk/gitweb/?p=jcan/flexbot.git;a=tree

Read only access

Get a copy of all

git clone git://repos.gbar.dtu.dk/git/jcan/flexbot.git

This should not ask for a username/password

Read write access

First get a copy of the repository (will be in a subdirectory called 'flexbot'.

git clone https://repos.gbar.dtu.dk/git/jcan/flexbot.git

Then to refresh the copy, go to the flexbot directory and say:

git pull

Adding new files

git add foo.cpp bar.h
git commit -m "commit message (i.e. what was changed)"
git push

After modifying files, this may be easier (there may be simpler ways, but then I don't know)

git add *.h *.cpp
git commit -m "commit message (i.e. what was changed)"
git push