forked from gfrd/egfrd
-
Notifications
You must be signed in to change notification settings - Fork 0
Set up git
Jintram edited this page Jun 22, 2011
·
3 revisions
This article will tell you how to install Git on an Ubuntu or Fedora system and will explain the necessary first step to get connected to the online code repository at github. The contents of this text are also contained in the file DEVELOPMENT in the main directory of the repository.
-
$ sudo apt-get install git(Ubuntu) or$ sudo yum install git(Fedora) -
$ git config --global user.name <your_name>(Settings are stored in$HOME/.gitconfig.) $ git config --global user.email <your_email_address>
-
$ git clone git://github.com/gfrd/egfrd.git(Creates a branchmasterwhich tracksorigin/master, the latest stable release version of gfrd. Don’t modify this branch except withgit pullafter a new version has been released.)
-
$ git branch common-develop origin/develop(Creates a branchcommon-developwhich tracksorigin/develop, the latest development version of gfrd. Don’t modify this branch except withgit pull, but pull often.)