Provides a starting point for demonstrating how to fork, modify, and submit a project pull request
- Create github account.
- Install git:
- debian:
sudo apt-get install git
- debian:
- clone repository:
cd && git clone https://github.com/"Your login name"/ForkDemo - Update README.md:
vi README.md - Add change to README.md with git
git add README.md - Create commit
git commit -m "Commit message" - Push your code
git push origin master - Create new pull request
Fork this demo Modify this "README.md" file to provide a better description of this "Hello World" project. (This is a simple C application that builds a "helloworld" command line application. Using printf function and stdio header) Submit a pull request with your changes