Skip to content

IIIT-Delhi/HCD-IIITD

 
 

Repository files navigation

Human-Centered Design, IIIT-Delhi's Website

About this Repository

This repo contains flask code for the website!

Contributing

First, read the contribution guidelines. Ensure you understand the code.

Setup

The following instructions describe how to fork this repository in order to contribute to this:

  1. Fork this repository, see https://help.github.com/articles/fork-a-repo/.

  2. Clone your fork:

    git clone https://github.com/<username>/HCD-IIITD.git

    Where <username> is your github username.

  3. Add the base repository as a remote:

    git remote add upstream https://github.com/digitalPlayer1125/HCD-IIITD.git

  4. Follow the instructions in the README files of each of the directories listed under About this Repository section of this readme to set up your development environment.

Development Workflow

After you have forked and cloned the repository, use the following steps to make and manage changes. After you have finished making changes, you can submit them to the base repository using a pull request.

  1. Pull changes from the base repository's master branch:

    git pull upstream master

  2. Create a new branch to track your changes:

    git checkout -b <branch>

    Where <branch> is a meaningful name for the branch you'll use to track changes.

  3. Make and test changes locally.

  4. Add your changes to the staging area:

    git add <files>

    Where <files> are the files you changed.

    Note: Run git add . to add all currently modified files to the staging area.

  5. Commit your changes:

    git commit -m <message>

    Where <message> is a meaningful, short message describing the purpose of your changes.

  6. Pull changes from the base repository's master branch, resolve conflicts if necessary:

    git pull upstream master

  7. Push your changes to your github account:

    git push -u origin <branch>

    Where <branch> is the branch name you used in step 2.

  8. Create a pull request to have your changes reviewed and merged into the base repository.

    For more information on creating pull requests, see https://help.github.com/articles/creating-a-pull-request/.

    To learn more about referencing issues in your pull request or commit messages, see https://help.github.com/articles/closing-issues-using-keywords/.

  9. Celebrate!

Releases

No releases published

Packages

No packages published

Languages

  • HTML 72.3%
  • Python 24.2%
  • JavaScript 1.8%
  • CSS 1.7%