Git is a powerful version control system that allows to track changes in the source code during software development enhancing collaboration, productivity and traceability of any code ever made.
To learn more about this tool, check it out the official Git documentation.
To get a local copy up and running follow these simple steps.
- Git installed on your local machine. You can download it here.
- A GitHub account. You can create one here.
- Open the terminal.
- Change the current working directory to the location where you want the cloned directory.
- Type the following command:
git clone git@github.com:ic1400/git-demo.git- Press
Enterto create your local clone. - Done! Now you have a local copy of this repository.
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project.
- Create your Feature Branch (
git checkout -b feature/AmazingFeature). - Make some changes.
- Add your Changes (
git add <file_name> ... <file_name>). - Commit your Changes (
git commit -m 'Add some AmazingFeature'). - Push to the Branch (
git push origin feature/AmazingFeature). - Open a Pull Request.
- Enjoy!
Distributed under the MIT License. See LICENSE for more information.