{"id":20620996,"url":"https://github.com/coderick14/deltainductions18","last_synced_at":"2026-04-16T20:35:57.897Z","repository":{"id":77579883,"uuid":"93341311","full_name":"coderick14/DeltaInductions18","owner":"coderick14","description":null,"archived":false,"fork":false,"pushed_at":"2018-07-02T20:17:19.000Z","size":2503,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-01-17T05:24:43.874Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/coderick14.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-04T21:03:44.000Z","updated_at":"2018-06-05T12:43:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"aad17b26-9bcf-40c3-a26f-2c642088057a","html_url":"https://github.com/coderick14/DeltaInductions18","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderick14%2FDeltaInductions18","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderick14%2FDeltaInductions18/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderick14%2FDeltaInductions18/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderick14%2FDeltaInductions18/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coderick14","download_url":"https://codeload.github.com/coderick14/DeltaInductions18/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242298974,"owners_count":20104922,"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":[],"created_at":"2024-11-16T12:16:20.721Z","updated_at":"2026-04-16T20:35:57.852Z","avatar_url":"https://github.com/coderick14.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Delta Inductions 2018\n---\n\u003e Welcome to Delta Inductions 2018.\n\nHi. I'm Deep. :)\nAll the code that you have written or will write during the induction process should be pushed to **this repository**.\n\nHere are a few tips to get you started.\n- Create an account on [github](https://github.com). (In case you already don't have one)\n\n- Install *git*. Click [here](https://git-scm.com/download/) to download and install git. (In case, you haven't installed it already)\n- **Great!!**. So I assume that you've installed *git*, and you're ready to go ahead. If not, please install it before proceeding further, so that we can take one step at a time. **:)**\n- Now, you need to configure your account details. Windows users, open git bash(Right click and click on '*Git Bash here*'). Linux guys, just open your *terminal*.\n- Now type the following two commands. (*If you've already executed these commands before, there's no need to do it again*)  \n`git config --global user.email \u003cyour-email-here\u003e`  \n`git config --global user.name \u003cyour-github-handle\u003e`\n- Now go to directory/folder where you want to keep your code. Check out the example below.  \n```\ncd ~/Documents/Code\n```\nor \n```\ncd ~/Desktop/MyFolder/\n```\nOn Windows, you can open the folder in **File Explorer**, and open *Git Bash* right there (by right clicking).\n- Type `git clone https://github.com/coderick14/DeltaInductions18`\nThis will [clone](https://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone) this repository in your system.\n- Type `cd DeltaInductions18`\n---\n- What I'm about to say now is **REALLY IMPORTANT**. *Git* is a version control system. So that you can maintain different versions of your code/project. Now, all of you will submit different codes for the same task(s). Thus, we will have different versions of the same task(s). *Git* uses **branches** to maintain versions. So, each one of us will have a different [branch](https://www.atlassian.com/git/tutorials/using-branches) here.\n- The default branch is `master`. To create your own branch, type `git checkout -b \u003cyour-branch-name\u003e`. For example, I'll type `git checkout -b deep`.\n- **Awesome**. So now you're in your branch. At any point of time, you can check your current branch by typing `git branch`.\n- Organize your tasks into subfolders i.e. Task1, Task2 ...\n- You can keep working on your tasks now. Once you feel that you've reached a checkpoint and you want your changes to be saved, type the following commands.\n\n1.`git status` ---\u003e *This will show you what files you have [changed](https://www.atlassian.com/git/tutorials/inspecting-a-repository#git-status)*. This command is optional, but **highly recommended**.\n\n2.`git add --all` ---\u003e *This will push your code to [staging area](https://www.atlassian.com/git/tutorials/saving-changes#git-add)*.\n\n3.`git commit -m \u003cyour-commit-message-within-quotes\u003e` ---\u003e [Commit](https://www.atlassian.com/git/tutorials/saving-changes#git-commit) your changes. Commit message tells what changes you've made, for example, `git commit -m \"Add feature to edit notes\"`. Try to keep them short and meaningful. :)\n\n4.And finally, [push](https://www.atlassian.com/git/tutorials/syncing#git-push) your changes to Github using `git push origin \u003cyour-branch-name\u003e`.\nFor example, I would type `git push origin deep`.\n- **So whenever you feel that you've reached a checkpoint, type the four commands above. And you're good to go.**\n- **MOST IMPORTANTLY, NEVER PUSH TO SOMEONE ELSE'S BRANCH. IF NECESSARY, TYPE `git branch` BEFORE ADDING YOUR CHANGES**. If you're on a diffrent branch (unlikely), type `git checkout \u003cyour-branch-name\u003e` to switch to your branch.\n- Check out [this](https://asciinema.org/a/5fugh8p6pvg4wy1jut27tgooe?speed=2) tiny video as well. It'll help you understand things better!\n\u003e All the best guys. And Happy Coding!!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderick14%2Fdeltainductions18","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoderick14%2Fdeltainductions18","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderick14%2Fdeltainductions18/lists"}