# hisui **Repository Path**: tangrx/hisui ## Basic Information - **Project Name**: hisui - **Description**: 在EasyUI基础上修改出的前端库 - **Primary Language**: CSS - **License**: MIT - **Default Branch**: master - **Homepage**: https://hisui.cn - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 5 - **Created**: 2024-12-18 - **Last Updated**: 2026-01-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hisui [![Build Status](https://travis-ci.org/wanghc/hisui.svg?branch=master)](https://travis-ci.org/wanghc/hisui) 在EasyUI基础上修改出的前端库 初始化git库 > git init # 远程定义 定义origin指向hisui库 > git remote add origin https://github.com/wanghc/hisui.git # 也可以用ssh方式定义origin指向hisui库 ssh - 速度快但公司可能限制端口--提交时要加入ssh公钥到github > git remote add origin git@github.com:wanghc/hisui.git # 拉取 > git pull origin master 或 > git fetch origin blue83:blue83 # 拉取所有分支 > git pull --all 或 > git fetch --all # 提交 > git push -u origin master