dolibarr-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Dolibarr-dev] Fermeture du CVS


From: CF
Subject: Re: [Dolibarr-dev] Fermeture du CVS
Date: Wed, 28 Sep 2011 23:03:24 +0200
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0a2) Gecko/20110927 Thunderbird/8.0a2

First, you must of course install git. Use aptitude or your favorite software manager.

Second, you must create a directory and go inside it:
mkdir dolibarr
cd dolibarr


Then, you have to clone the project
git clone https://github.com/Dolibarr/dolibarr.git

You can then select the branch you want to use (let's say master for us)
git checkout master

Last, you must really download the files. You can use git pull, but i prefer fetch. Pull is directly doing a merge with your own changes, while fetch will let you handle changes (and resolve conflicts) before merging anything. Also, for now, let's say we only want HEAD (latest commit).
git fetch -R HEAD

---

So, yes, once it is done, you can simply
cd dolibarr
git fetch




reply via email to

[Prev in Thread] Current Thread [Next in Thread]