/Learn-to-Code

Contribute with your favourite language .Let's see your skill with your projects .

Primary LanguagePython

Hacktoberfest2022



Learn-to-Code ๐Ÿ“ƒ

๐Ÿท๏ธ Contribute with your favourite languages and let's see your project.

How to contribute?

  • Create the folder of your preferred language if not present and add your code within a folder or as a file.

๐Ÿš€ Quick Start :

1: Forking the repository :

Get your own local copy of the repository by clicking on Fork button at right upper corner.

2: Clone the Forked Repository

To make your local copy of the repository follow the steps:

  • Open the Command Prompt
  • Type this command:
$ git clone https://github.com/<your-github-username>/Automate-with-code

3: Creating a new branch

Branching helps managing your code and isolate your work. To create a new branch:

$ git branch <branch_name>
$ git checkout -b <branch_name>

Keep your cloned repository upto to date by pulling from upstream (this will also avoid any merge conflicts while committing new changes)

git pull origin main

4: Contribute

Commit your code in your branch using below steps:

First stage your changes,

git add .

Commit your code with appropriate message,

git commit -m "commit message"

At this point you can use the git push command to push the changes to the current branch of your forked repository:

git push origin <branch-name>

5: Create Pull Request

Now, you are ready to make a pull request to the original repository.

You should navigate to your forked repository, and press the "Compare & pull request" button on the page.

GitHub will alert you that you can merge the two branches because there is no competing code. You should add in a title, a comment, and then press the โ€œCreate pull requestโ€ button.

License

License

This project is licensed under the MIT License.

Copyright (c) Shobhit61730

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.


Happy Coding ๐Ÿ‘จโ€๐Ÿ’ป