Skip to content

Latest commit

History

History
81 lines (72 loc) 路 2.17 KB

README.md

File metadata and controls

81 lines (72 loc) 路 2.17 KB

FirstTimers

馃摵 Video explanation:- https://youtu.be/1Bv4bhtNIaA

visitors GitHub issues GitHub pull requests Merged Pull Requests

git installation

Install git from this link:- https://git-scm.com/downloads

To check the git version

git --vesrion

To set the global git username & email address

git config --global user.name "your name"
git config --global user.email "your email"

STEPS to contribute:

  1. Initialize git repository.
git init
  1. Create a new branch.
git branch YourBranchName
  1. Shift to that branch from master branch.
git checkout YourBranchName

Add your name under contributors list in README.md with format FirstName_LastName

  1. Add all the changes you've made.
git add .
  1. Make a commit message.
git commit -m 'your_message'
  1. Shift to the master branch.
git checkout main
  1. Merge everything from your branch to the master branch.
git merge YourBranchName
  1. Get ready to push from your local machine.
git remote add <message> https://<GitHubToken>@github.com/<username>/<RepositoryName>.git

If you haven't setup your Personal Access Token yet, then follow the steps from here.

  1. Push everything on your forked repository.
git push -u <message> main

Contributors list :-

Firstname_Lastname

  1. Hrishikesh Thite
  2. Yashoda Rajmani
  3. Shubham
  4. Rahul Agarwal
  5. Manmeet Kaur
  6. Jaideep Singh
  7. Rohit Tewari
  8. Ashutosh Kumar Choudhary
  9. Priyanshu Vaishnavi
  10. Pooja Bennabhaktula
  11. Pranay Gupta