Skip to content

Yasukazu/taga-arawan

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Taga-arawan: a fork of talaarawan

talaarawan

A simple diary web application built by using PHP. It is a personal journal for your notes and thoughts.

Features

  1. Login System with validation
  2. Forgot Password
  3. Create New Note
  4. Update Note
  5. Delete Note
  6. Search Notes with their Title or Description

Building from Source 🏗️

  1. Fork the repository
  • Then go to your repository and find talaarawan
  1. Clone the repository
git clone https://github.com/{your username}/talaarawan.git

Sync your fork with the original Git repo

  • If you list the configured remote repository you will only see your fork as origin:
git remote -v
origin  https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
origin  https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)
  1. Add a new remote upstream repository
git remote add upstream https://github.com/glendell03/talaarawan.git
  • You can now see both the original repository and the fork
git remote -v
origin    https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
origin    https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)
upstream  https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (fetch)
upstream  https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (push)
  1. Sync your fork
  • Be sure your in the root of your project and also in the main branch
git checkout main
Switched to branch 'main'
  • Now you have to fetch the changes from the original repo
git fetch upstream
  • And merge the changes in your main branch
git merge upstream/main

Push your code

git add .
git commit -m "Describe mo kung ano ginawa mo"
git push -u origin main
  1. Go to your talaarawan repository

  2. Click pull request pull request

  3. Create Pull request

About

Diary web app Yasu fork

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 97.6%
  • CSS 2.0%
  • JavaScript 0.4%