Cloning the git repo
From FrugalWiki
i18n |
---|
English |
Français |
Cloning the GIt repo of Frugalware
We'll see how to clone the git repo of Frugalware-current (as example) and get a local copy.
Others repos are availables here: http://git.frugalware.org/gitweb/gitweb.cgi
Crate a folder in your $HOME then in there with the terminal:
- If you are a Frugalware devel, you have an access to genesis, you'll be able to clone in this way:
- If you are just a contributor, you can clone as an anonymous:
Then it's time to configurate you copy of the repo:
$ cd current
git config user.name "Pseudo"
git config user.email login@email.com
git config remote.origin.receivepack "sudo -u vmiklos git-receive-pack"
git config branch.master.rebase true
To update the repo:
Now what ?
- Developpers will have a new fresh local copy of the repo :D
- Contributors will can use this copy to start making a git patch in the way to suggest their contributions to Frugalware project.