4

GitHub - aritraroy24/HACKTOBERFEST2021_PATTERN: 😎A Hacktoberfest-2021 Contributi...

 2 years ago
source link: https://github.com/aritraroy24/HACKTOBERFEST2021_PATTERN
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
aritraroy24/HACKTOBERFEST2021_PATTERN: 😎A Hacktoberfest-2021 Contribution Repository For Beginners😎... Build Any Pattern You Like...In Any Language❤❤❤

sunglassessunglassessunglassesHacktoberfest-2021 contribution Repo for Beginnerssunglassessunglassessunglasses

dart If you are a beginner, and looking for your first contribution, we are here to help. Just create a simple designing pattern using any language you like in our Patterns folder which will be counted as your first PR. dart

Just 7 simple steps to earn your t-shirt for Hacktoberfest 2021 🧑🏻‍🤝‍🧑🏻

  1. dartOpen the Patterns folder in your code editor of your choice.
  2. dartMake any design pattern you like using any programming language.
  3. dartSave your changes and give its name by your github username.
  4. dartUpload the screenshot of your pattern in Pattern_ScreenShots folder and give its name by your github username.
  5. dartUpload your photo in Photos folder and give its name by your github username.
  6. dartNow add your profile details in Contributors.md file (Serial No., Name, GitHub Username, Photo [Link to Your Picture in Photo Folder], Pattern File Name, Screenshot [Link to Your Pattern ScreenShot in Pattern_ScreenShot Folder], Institution and Email Id).
  7. dartDone! You are ready to create your pull request.

boomboomboomSome Have Been Done For You As An Example

heavy_check_markheavy_check_mark What You Need to Do for Multiple PRs heavy_check_markheavy_check_mark

  • Add any design pattern and screenshot of your pattern respectively in Patterns and Pattern_ScreenShots folder like previous PR
  • Give the above files any name you like.
  • No need to add your photo
  • In the Contributors.md file add details like below:
    |   |   |   |   | your pattern filename | screenshot path |   |   |

stop_signstop_signstop_sign ELIGIBILITY CRITERIA stop_signstop_signstop_sign

  • No Missing Details
  • Different Pattern or Same Pattern in Different Language
  • Follow @aritraroy24
  • Star & Fork the Repository

Contributing to Hacktoberfest 2021 👨🏼‍💻

Open source is changing the world - one pull request at a time. 🧑🏼‍🚀 Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt.
🙅🏼‍♂️Hacktoberfest is open to everyone in our global community. Whether you’re new to development, a student, long-time contributor, event host, or company of any size, you can help drive growth of open source and make positive contributions to an ever-growing community. All backgrounds and skills levels are encouraged to complete the challenge.🙅🏼‍♂️

computer Our repo is open to beginner contributors who want to participate and complete successful PR Request.

Instructions: 🙅🏼 🙅🏼‍♂️

1. 👇🏻Register yourself for Hacktoberfest 2021

Link to register: hacktoberfest.digitalocean.com

2. 👇🏻Getting Started

See more details at: hacktoberfest.netlify.com Go to our repo by clicking here - github.com/aritraroy24/HACKTOBERFEST2021_PATTERN

3. 👇🏻Star and Fork this Repository

zap You can star star and fork plate_with_cutlery this repository on GitHub by navigating at the top of this repository. zap GitHub repository URLs will reference both the username associated with the owner of the repository, as well as the repository name. zap When you’re on the main page for the repository, you’ll see a button to "Star" and “Fork” the repository on your upper right-hand side of the page, underneath your user icon.

4. 👇🏻Clone the Repository

zap To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window. zap We’ll use the git clone command along with the URL that points to your fork of the repository. zap This URL will be similar to the URL above, except now it will end with .git. In the example above, the URL will look like this:

github.com/aritraroy24/HACKTOBERFEST2021_PATTERN.git

zap You can alternatively copy the URL by using the green “Clone or download” button from your repository page that you just forked from the original repository page. Once you click the button, you’ll be able to copy the URL by clicking the binder button next to the URL. zap Once we have the URL, we’re ready to clone the repository. To do this, we’ll combine the git clone command with the repository URL from the command line in a terminal window:

git clone https://github.com/aritraroy24/HACKTOBERFEST2021_PATTERN.git

5. 👇🏻Create a New Branch

Input:

zap To create your branch, from your terminal window, change your directory so that you are working in the directory of the repository. Be sure to use the actual name of the repository (i.e. HACKTOBERFEST2021_PATTERN). To change into that directory use: cd HACKTOBERFEST2021_PATTERN zap Now, we’ll create our new branch with the git branch command. Make sure you name it descriptively so that others working on the project understand what you are working on : git branch <YOUR-USERNAME> zap Now that our new branch is created, we can switch to make sure that we are working on that branch by using the git checkout command : git checkout <YOUR-USERNAME>

Output:

zap Once you enter the git checkout command, you will receive the following output:Switched to branch '<YOUR-USERNAME>' zap At this point, you can now modify existing files or add new files to the project on your own branch. zap Make sure you have read the CONTRIBUTING.md before you start contributing such that you make remarkable and easily acceptable PRs. zap Make Changes Locally. zap Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do with the git add command. Let’s add the -A flag to add all changes that we have made : git add -A or git add . zap Next, we’ll want to record the changes that we made to the repository with the git commit command. zap The commit message is an important aspect of your code contribution; It helps the other contributors fully understand the change you have made, why you made it, and how significant it is. Additionally, commit messages provide a historical record of the changes for the project at large, helping future contributors along the way. Thus, you must ensure that you write a meaningful commit message. If in a confusion, refer to the good contribution guidelines included in the CONTRIBUTING.md . zap Now, you can record that with the -m flag and the message in quotes: Example: git commit -m "Updated Readme.md" zap At this point you can use the git push command to push the changes to the current branch of your forked repository: Example: git push --set-upstream origin new-branch

6. 👇🏻Update Local Repository

zap While working on a project alongside other contributors, it is important for you to keep your local repository up-to-date with the project as you don’t want to make a pull request for code that will cause conflicts. To keep your local copy of the code base updated, you’ll need to sync changes. zap We’ll first go over configuring a remote for the fork, then syncing the fork.

7. 👇🏻Configure a Remote for the Fork

zap Next, you’ll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. you’ll have to do this with the git remote add command : git remote add upstream https://github.com/aritraroy24/HACKTOBERFEST2021_PATTERN zap In this example, upstream is the shortname we have supplied for the remote repository since in terms of Git, “upstream” refers to the repository that you cloned from. If you want to add a remote pointer to the repository of a collaborator, you may want to provide that collaborator’s username or a shortened nickname for the shortname.

8. 👇🏻Sync the Fork

zap Once you have configured a remote that references the upstream and original repository on GitHub, you are ready to sync your fork of the repository to keep it up-to-date. zap To sync your fork, from the directory of your local repository in a terminal window, you’ll have to use the git fetch command to fetch the branches along with their respective commits from the upstream repository. Since you used the shortname “upstream” to refer to the upstream repository, you’ll have to pass that to the command : git fetch upstream zap Switch to the local master branch of our repository : git checkout master zap Now merge any changes that were made in the original repository’s master branch, that you will access through your local upstream/master branch, with your local master branch : git merge upstream/master

9. 👇🏻Create Pull Request

At this point, you are ready to make a pull request to the original repository. Now navigate to your forked repository, and press the “New pull request” button on your left-hand side of the page.

crowncrown Hurray!!! You just got closer to completing your hacktoberfest challenge. smiley

Happy??? Star star this Repo. star_struck

tophat Check your Hacktoberfest Contribution status at: 🙅🏼‍♂️

hacktoberfest.digitalocean.com/profile

two_men_holding_hands Owner

👨🏼‍💻 Intermediate | woman_student M.Sc. Chemistry | computer Theoretical Computational Chemist | purple_heartOpen-Source Mentor |

🙅🏼‍♂️ License speaking_head

The MIT License (MIT)

Copyright (c) 2021 Aritra Roy

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.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

sunglassespray Thanks to Our Awesome Contributors praysunglasses


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK