# base-common **Repository Path**: VAYY/base-common ## Basic Information - **Project Name**: base-common - **Description**: 基础公共包,可作为项目的工具包使用 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-02 - **Last Updated**: 2021-11-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: Java, java-util ## README Command line instructions You can also upload existing files from your computer using the instructions below. Git global setup git config --global user.name "zhuhecheng" git config --global user.email "zt14345@zongteng.net" Create a new repository git clone http://git.eminxing.com/zt-fbg/fbg-common.git cd fbg-common touch README.md git add README.md git commit -m "add README" git push -u origin master Push an existing folder cd existing_folder git init git remote add origin http://git.eminxing.com/zt-fbg/fbg-common.git git add . git commit -m "Initial commit" git push -u origin master Push an existing Git repository cd existing_repo git remote rename origin old-origin git remote add origin http://git.eminxing.com/zt-fbg/fbg-common.git git push -u origin --all git push -u origin --tags