Skip to content

edillormark2/HospitalHumanResourceManagementSystem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hospital Human Resource Management System

Development

Application Requirements

Repository Rules

  • remote shorthand name: origin
  • main branch: master
  • DO NOT push directly in master branch, always make a branch and then make a pull request/merge request

development flow

  1. pull latest changes in github repository git pull origin master
  2. make a branch git branch <branch name>
  3. switch to newly created branch git switch <branch name>
  4. make your changes coding
  5. test changes
  6. stage file changes git add .
  7. commit changes in branch git commit -m "commit message"
  8. push branch in github repository git push origin <branch name>
  9. make a pull request
  10. wait for approval

Git Basic Command

  • git init make a repository
  • git branch check created branches
  • git branch <branch name> create branch
  • git ranch -rm <branch name> remove branch
  • git switch <branch name> switch to a diffent branch
  • git status check file changes
  • git add . stage all file for commit
  • git commit -m "commit message" commit changes in branch
  • git pull origin master fetch latest version of master branch
  • git push origin <branch name> upload changes in a branch in github repository

NO DIRECT PUSHING IN MASTER BRANCH

About

Human Resource Management System especially designed for hospital settings.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors