Skip to content

SKAUL05/rent-receipt-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Rent Receipt Generator

GitHub license GitHub code size in bytes

A React App to generate rent receipts online

Form

This project was bootstrapped with Create React App.

Click here for live demo.

How to run?

  • Clone the repository : git clone https://github.com/SKAUL05/rent-receipt-generator/

  • Run yarn install

  • Run npm run start

  • Open browser and go to http://localhost:8080/

Contributing

GitHub issues GitHub pull requests

1. Fork this repository. Click on the symbol at the top right corner.

2. Clone the forked repository.

git clone https://github.com/<your-github-username>/rent-receipt-generator

3. Navigate to the project directory.

cd receipt-generator

4. Create a new branch.

git checkout -b <your_branch_name>

5. Make changes in source code.

6. Stage your changes and commit

#Add changes to Index
git add .

#Commit to the local repo
git commit -m "<your_commit_message>"

CAUTION: Synch up your local repo with original repo (Upstream) before pushing your commits. This avoids unnecessary conflicts during the merge.

NOTE: You can do so by adding a remote handler reference to the original repo and pull the changes from the respective branch. Resolve the merge-conflicts if any.

#Add upstream repo
git remote add upstream https://github.com/SKAUL05/rent-receipt-generator.git

#Disable accidental push to the upstream
git remote set-url --push upstream DISABLE

#List the remote repo and fetch references
git remote -v && git fetch upstream

#Check for any new commits in the upstream branch
git log HEAD..upstream/master #No output indicates, upstream has not moved ahead

#See the patch difference between local and upstream branch
git diff -p HEAD..upstream/master

CAUTION: If the upstream has moved ahead, rebase your commit and resolve conflicts if any. [Skip otherwise]

git rebase upstream/master

7. Push your local commits to the remote repo.

git push -u origin <your_branch_name>

8. Create a PR !

9. Congratulations! Sit and relax, you've made your contribution to Rent Receipt Generator project.

More about HRA

Click here to know more in detail about HRA

Thanks!

Glad to see here! Show some love by starring this repository.

Sarath Kaul