{"id":17863212,"url":"https://github.com/m-code12/e-commerce-website","last_synced_at":"2025-07-11T22:10:31.251Z","repository":{"id":54151510,"uuid":"332454931","full_name":"m-code12/E-Commerce-Website","owner":"m-code12","description":null,"archived":false,"fork":false,"pushed_at":"2021-03-11T16:14:49.000Z","size":659,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T21:16:54.599Z","etag":null,"topics":["dsciiitkalyani","wociiitkalyani"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/m-code12.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-24T13:21:17.000Z","updated_at":"2021-03-11T16:23:29.000Z","dependencies_parsed_at":"2022-08-13T07:40:45.956Z","dependency_job_id":null,"html_url":"https://github.com/m-code12/E-Commerce-Website","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/m-code12/E-Commerce-Website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-code12%2FE-Commerce-Website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-code12%2FE-Commerce-Website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-code12%2FE-Commerce-Website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-code12%2FE-Commerce-Website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/m-code12","download_url":"https://codeload.github.com/m-code12/E-Commerce-Website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-code12%2FE-Commerce-Website/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264905112,"owners_count":23681341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dsciiitkalyani","wociiitkalyani"],"created_at":"2024-10-28T08:59:10.542Z","updated_at":"2025-07-11T22:10:31.230Z","avatar_url":"https://github.com/m-code12.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# E-Commerce-Website\n\n## Steps to follow :scroll:\n\n### 1. Fork it :fork_and_knife:\n\nYou can get your own fork/copy of [this repo](https://github.com/m-code12/E-Commerce-Website) by using the \u003ca href=\"https://github.com/m-code12/E-Commerce-Website/new/master?readme=1#fork-destination-box\"\u003e\u003ckbd\u003e\u003cb\u003eFork\u003c/b\u003e\u003c/kbd\u003e\u003c/a\u003e button .\n\n [![Fork Button](https://help.github.com/assets/images/help/repository/fork_button.jpg)](https://github.com/m-code12/E-Commerce-Website)\n\n### 2. Clone it :busts_in_silhouette:\n\nYou need to clone (download) it to local machine using\n\n```sh\n$ git clone https://github.com/Your_Username/E-Commerce-Website.git\n```\n\n\u003e This makes a local copy of repository in your machine.\n\nOnce you have cloned the `E-Commerce-Website` repository in Github, move to that folder first using change directory command on linux and Mac.\n\n```sh\n# This will change directory to a folder E-Commerce-Website\n$ cd E-Commerce-Website\n```\n\nMove to this folder for all other commands.\n\n### 3. Set it up :arrow_up:\n\nRun the following commands to see that *your local copy* has a reference to *your forked remote repository* in Github :octocat:\n\n```sh\n$ git remote -v\norigin  https://github.com/Your_Username/E-Commerce-Website.git (fetch)\norigin  https://github.com/Your_Username/E-Commerce-Website.git (push)\n```\n\nNow, lets add a reference to the original [E-Commerce-Website](https://github.com/m-code12/E-Commerce-Website) repository using\n\n```sh\n$ git remote add upstream https://github.com/m-code12/E-Commerce-Website.git\n```\n\n\u003e This adds a new remote named ***upstream***.\n\nSee the changes using\n\n```sh\n$ git remote -v\norigin    https://github.com/Your_Username/E-Commerce-Website.git (fetch)\norigin    https://github.com/Your_Username/E-Commerce-Website.git (push)\nupstream  https://github.com/m-code12/E-Commerce-Website.git (fetch)\nupstream  https://github.com/m-code12/E-Commerce-Website.git (push)\n```\n\n### 4. Sync it :recycle:\n\nAlways keep your local copy of repository updated with the original repository.\nBefore making any changes and/or in an appropriate interval, run the following commands *carefully* to update your local repository.\n\n```sh\n# Fetch all remote repositories and delete any deleted remote branches\n$ git fetch --all --prune\n\n# Switch to `master` branch\n$ git checkout master\n\n# Reset local `master` branch to match `upstream` repository's `master` branch\n$ git reset --hard upstream/master\n\n```\n\n### 5. Create a new branch :bangbang:\n\nWhenever you are going to make contribution. Please create seperate branch using command and keep your `master` branch clean (i.e. synced with remote branch).\n\n```sh\n# It will create a new branch with name Branch_Name and switch to branch Folder_Name\n$ git checkout -b Folder_Name\n```\n\nCreate a seperate branch for contibution and try to use same name of branch as of folder.\n\nTo switch to desired branch\n\n```sh\n# To switch from one folder to other\n$ git checkout Folder_Name\n```\n\nTo add the changes to the branch. Use\n\n```sh\n# To add all files to branch Folder_Name\n$ git add .\n```\n\nType in a message relevant for the code reveiwer using\n\n```sh\n# This message get associated with all files you have changed\n$ git commit -m 'relevant message'\n```\n\nNow, Push your awesome work to your remote repository using\n\n```sh\n# To push your work to your remote repository\n$ git push -u origin Folder_Name\n```\n\nFinally, go to your repository in browser and click on `compare and pull requests`.\nThen add a title and description to your pull request that explains your precious effort.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm-code12%2Fe-commerce-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fm-code12%2Fe-commerce-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm-code12%2Fe-commerce-website/lists"}