This repository will be used as a medium to demonstrate use of Git. Some important steps and commands that are necessary to get started with Open source will also be given so that you can refer this repository in case you forget something.
- Fork this repository
- Clone forked respository onto your system using the command -
git clone [url of forked repository]
- Create a new branch using the command -
git branch [branch-name]
- Move to newly created branch using the command -
git checkout [branch-name]
- Make necessary changes or improvements.
- Add your changes using the command -
git add -A
- Commit your changes using the command -
git commit -m "your commit message"
- Push your committed changes using the command -
git push origin [branch-name]
- Create a pull request