Giter Club home page Giter Club logo

thailand-reservation's Introduction

Thailand Finish in June 1st

Prerequisite

Contributors

    Gao

Essential Parts with Git

checkout the commands with the Basic Command

Never make changes on master branch, it only can be merged with develop branch

When start working on a new feature, follow these commands:

    git checkout develop (switch to develop branch)
    git pull (if there is new changes)
    git branch feature-[name]  (create a new branch,[name] means optional parameter)

then start working on the new feature/[name] branch, you can commit and push it to the remote,after finishing it,

you can try to merge to the develop branch by these commands:

    git checkout develop
    git pull
    git merge feature/[name]  (merge the feature/[name] branch to develop)
    git push -u origin develop (push the merged code to develop)
    git push origin --delete feature/[name] (delete the remote one)
    git branch -d feature/[name] (delete the local feature/[name] branch )

When there is a bug you need to fix, create branch named bugfix/[name] base on develop branch

and follow the same steps like you do on feature

Start web client app

Open the directory you want to put the code, and open git bash enter below commands:

    git clone https://github.com/likeconan/Thailand.git

Then open the code repository with VSCode and open the terminal enter below commands:

    npm install
    npm start

Then open your browser and navigate to localhost:3000

thailand-reservation's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.