|
|
<!-- Name: GIT -->
|
|
|
<!-- Version: 6 -->
|
|
|
<!-- Last-Modified: 2011/06/14 22:42:01 -->
|
|
|
<!-- Author: pbrochard -->
|
|
|
# Checking out the latest version of clfswm with Git
|
|
|
|
|
|
A Git repository is available at Common-lisp.net : http://common-lisp.net/gitweb?p=projects/clfswm/clfswm.git
|
|
|
|
|
|
To checkout clfswm with Git, you need to clone this repository:
|
|
|
|
|
|
```
|
|
|
git clone git://common-lisp.net/projects/clfswm/clfswm.git
|
|
|
cd clfswm
|
|
|
```
|
|
|
|
|
|
You can then work normally with this Git repository.
|
|
|
For example:
|
|
|
|
|
|
Synchronize your repository with the remote repository:
|
|
|
```
|
|
|
git pull
|
|
|
```
|
|
|
|
|
|
Edit your file
|
|
|
|
|
|
Submit your change in your repository:
|
|
|
```
|
|
|
git commit -a -m "Your message log"
|
|
|
```
|
|
|
|
|
|
|
|
|
A Git repository synchronized with the Common-lisp.net GIT repository is available at http://repo.or.cz/w/clfswm.git.
|
|
|
|
|
|
To checkout clfswm with Git, you need to clone this repository:
|
|
|
|
|
|
```
|
|
|
git clone git://repo.or.cz/clfswm.git
|
|
|
```
|
|
|
|