forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 4
Git cheatsheet
OlegHahm edited this page Apr 9, 2013
·
4 revisions
git clone git://github.com/RIOT-OS/RIOT.git
If you require write access, please contact the RIOT-team via email.
You may additionally want to checkout the platform configuration and initialization code from
git clone git://github.com/RIOT-OS/boards.git
or
git clone git://github.com/RIOT-OS/thirdparty_boards.git
Exemplary projects can be found in the projects repository:
git clone git://github.com/RIOT-OS/projects.git
Edit the file @.git/config@ within your local repository and replace
url = git://github.com/RIOT-OS/RIOT.git
by
url = git@github.com:RIOT-OS/RIOT.git
Example for the stable branch:
git branch --track stable origin/stable
- (Examples are for release 0.01a)
git tag -s 0.01a
git archive --format=tar --prefix=riot-0.01a/ 0.01a | gzip > riot-0.01a.tar.gz