PyroCMS v0.9.7.4 - an open-source modular general purpose CMS |
[eluser]Yorick Peterse[/eluser]
[quote author="BenneX" date="1244575925"]Yeah, then I'll work on the language-system ![]() ![]() I'm sorry, but I've never used github before... Can you tell me, what I have to do to join the team and give me a short introduction? I've installed "msysgit" and created an account on github.com. What I have to do next? Thanks in advance for your help ![]() greetz[/quote] First do the following : http://github.com/guides/providing-your-ssh-key Pulling a repo 1. Create a folder somewhere and give it the name "pyrocms" (can be anything actually). 2. Open up your console and navigate to the folder created in step 1. 3. type 'git init' to create an empty repo in that folder. 4. Type in the following commands : Code: git remote add origin [email protected]:philsturgeon/pyrocms.git 5. If everything went ok you should now have a working copy of PyroCMS. How to commit an update 1. Open up the terminal / console and go to your local repository 2. Type 'git status' to see which files need to be added, have been changed or have been deleted. 3. To add files type the following: Code: git add FILENAME To add everything inside an directory do the following: Code: git add path/to/directory/ 4. Set a commit message Code: git commit -m 'YOUR MESSAGE GOES HERE' 5. Upload the changes to GitHub Code: git push origion master That should do it ![]() |
Welcome Guest, Not a member yet? Register Sign In |