[go: up one dir, main page]

Skip to content

vedantterse/python

Repository files navigation

OpenSoucre Begineer guide

This is a beginner-friendly guide to help you get started with your first Pull Request (PR) for Hacktoberfest/open source . We're excited to have you join the open source community and contribute to this project. This Repo is focused on some beginner level python projects , you can contribute to the projects or add yours to this repo . the project should not be too basic or related to the already added ones , if you have an unique project which is beginner level you can add it to the PR .

Feel free to contribute your own unique/beginner-friendly projects to this repository, providing newcomers with opportunities to contribute

Getting Started

Step 1: Fork the Repository

Click the "Fork" button in the upper right-hand corner of this repository to create your own copy.

Step 2: Clone Your Fork

Clone the repository to your local machine using the following command (replace < your-username > with your GitHub username):

git clone https://github.com/<your-username>/Hacktoberfest.git

Step 3: Create a Branch

Create a new branch to work on your changes:

git branch my-branch 
git checkout -b my-branch

Step 4: Make Changes

Make the necessary changes or additions to the project. You can add new features, fix bugs, update documentation, or anything else you think is valuable.

Step 5: Commit Your Changes

Commit your changes with a meaningful commit message:

git commit -m "Add a brief description of your changes"

Step 6: Push Your Changes

Push your changes to your fork on GitHub:

git push origin my-branch

Step 7: Create a Pull Request

Go to the original repository on GitHub and click the "New Pull Request" button. Ensure that you're comparing your branch to the main branch of the original repository.

Step 8: Describe Your Pull Request

Write a clear and concise description of your changes in the Pull Request description box. Be sure to mention what issue you're addressing if applicable.

Step 9: Submit Your Pull Request Click the "Create Pull Request" button to submit your changes for review.

Review and Merge I will review your Pull Requests and, if they are okay, merge them into the main project. Please be patient, as it may take some time for your PR to be reviewed.

Making your own Repository

1.click on New Repository image

2.Enter the name and description image

3.scroll down and click on Create Repository image

4.Now open an terminal or git bash GUI in the folder which you want to upload

use following commande

echo "# example" >> README.md
git init
git add README.md
git add .

"In the list commands on github git.add command is missing dont forget to add that"

git commit -m "first commit"
  git branch -M main
git remote add origin https://github.com/your-username/example.git
git push -u origin main

checkout other git commands in the pdf

  • My replit page checkout this for more projects.

    ( you can edit them and add it for your 1st PR or you can contribute/solve the issue in the existing ones)

About

this is an begineer friendly repo in python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages