Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Latest commit

 

History

History
41 lines (39 loc) · 837 Bytes

git-commands.md

File metadata and controls

41 lines (39 loc) · 837 Bytes

First follow the steps of project setup given in the README.md

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

Make all the changes (bug fixes, enhancements on your branch)

  1. Add all the changes once you are done.
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
  1. Push everything on your forked repository.
git push -u <message> main