Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 58 additions & 16 deletions contributing.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,64 @@
# Contributing

## How to
1. Fork this repository
2. Clone this repository ```git clone https://github.com/Ganeshkillamsetty/HackDot.git```
3. Go to this repository on your machine
4. Make changes
5. Commit your changes to this repository
```git add .
git commit -m "your changes"
```
6. Push your forked repository ```git push```
7. Make your pull request

## Rules
Use HTML CSS, Js, and Jquery language.
# Contributing Guidelines
When contributing to this repository, please first discuss the change you wish to make via issue with the maintainers of this repository before making a change.


### TLDR of contributing.md:
* You can only use *HTML, CSS, Javascript and jQuery*.
* Ensure that no one is working on (or already completed) the feature you want to work on.
* Use descriptive(as well as good) commit messages.
* **Follow the Directory Structure and naming Convention**.
* **Update the README.md file as you work on a new feature**.

# Required Features and Fixes
### Required Features and Fixes:
1. Responsiveness of Admin panel.
2. Fix Responsive of Images.
3. Add Imageslideshow in home page.
4. Add ImageMap in about page.

### Pull Request Process:
1. Ensure any install or build dependencies are removed.
2. You should request review from the maintainers once you submit the Pull Request.


### Instructions:

#### Step 1: Fork Repository
Click the Fork button, top right of this page

#### Step 2: Git Set Up & Download

**Clone the repo**

`$ git clone https://github.com/Ganeshkillamsetty/HackDot.git`

**Add upstream remote**

`$ git remote add upstream https://github.com/Ganeshkillamsetty/HackDot.git`

**Fetch and merge with upstream/master**
```
$ git fetch upstream
$ git merge upstream/master
```
#### Step 3: Create and Publish Working Branch
```
$ git checkout -b feature_name
$ git push origin feature_name
```
#### Step 4: Make changes (choose from the Tasks above)
#### Step 5: Commit and Push
```
$ git add .
$ git commit -m "commit-message"
$ git push origin feature_name
```

#### Step 6: Create Pull Request
Create a New Pull Request from your forked repository (Click the 'New Pull Request' Button located on the top of your repo)

<br>

**Star this repository** if you had fun!

Thank you for your interest in contributing!