If you're not familiar with git, follow the links bellow for a head start. Then test your git skills here, and put your first signature with us.
##What is Git? Git is an open source distributed version control system (DVCS) that can significantly improve the way you work and collaborate on projects. It allows you to keep a history of the significant changes made to your local files. It can also backup this history through remote hosting services like GitHub.
ما هو نظام التحكم في الإصدارات، و لماذا يجب أن يهمك؟
##Getting started with git:
- Install git
- Setup git
- Interactive tool to learn git
- Check out the GitHub Webcasts on Youtube
- Explains git overflow
- New Boston Github tutorials on Github
##Your First Task:
-
After setting up your git account, write your name and a short message if you like in the signature.md file!
-
All you need to do is fork the repository, clone it to your computer, make your changes, commit, push and then send a pull request.
-
Fork How to fork?
-
Clone
git clone https://github.com/"Your User Name"/StarterKit.git
- Open signature.md file in the StarterKit folder and write your name.
- Let git know about the changes you made
git add signature.md
- Add short description about what you did.
git commit -m "signature.md was signed by me"
- Push your changes to the server
git push
- Send Pull request How to send pull requests
Using git on a Mac? Download GitHub for Mac - it'll make your life ten times easier!
Using git on a PC? Download Github for Windows - it'll make your life ten times easier!