/Practice-code-repo

A multi-language repo for all the beginners this Hacktober 2020.

Primary LanguageC++

Practice-code-repo

A repo for all the beginners for this Hacktober- 2020

If it's your first Hacktober Fest and you're feeling a bit nervous or unsure, this is a great place to do a test run! You can use this repo as an oportunity to get familiar with contributing via Pull Requests (PRs).

Fret not, it's pretty simple! Just follow these steps:

  • Read the CoC (Code of Conduct)
  • Fork the repo
  • Create a new file in the forked repo
  • Add practice code in any language of your choice
  • Create a PR to this repo

Don't forget to document your work! It will help others understand your code at a glance

CODE OF CONDUCT

Contributor Covenant Code of Conduct

In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.

Our Standards

Examples of behavior that contributes to creating a positive environment include:

✔ Using welcoming and inclusive language

✔ Being respectful of differing viewpoints and experiences

✔ Gracefully accepting constructive criticism

✔ Focusing on what is best for the community

✔ Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

❌ Trolling, insulting/derogatory comments, and personal or political attacks

❌ Public or private harassment

❌ Publishing others' private information, such as a physical or electronic address, without explicit permission

❌ Other conduct which could reasonably be considered inappropriate in a professional setting

-There should be atleast 4 programs with comments that cn help others understand.

This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html]

For answers to common questions about this code of conduct, see [https://www.contributor-covenant.org/faq]

How to Contribute

  • Fork the Repository

  • Clone the Forked repository

git clone https://github.com/<USER_NAME>/<REPO_NAME>
  • Add Scripts and necessary changes
git add .
  • Commit the changes
git commit -m "MESSAGE"
  • Push to your branch
git push
  • Raise a Pull Request to the parent Repository

Syncing a fork

  • Fetch the changes made in upstream
git fetch upstream
  • Merge the changes from upstream/master into your local master branch.
git merge upstream/master
  • Push to your branch
git push