# Alimama **Repository Path**: tianyutan/programming-bootcamp-java-project ## Basic Information - **Project Name**: Alimama - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2020-10-28 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Alimama ## Git Command git pull
git add file_name.java
git commit -m "reason..."
git push
## Save Database 如果有更新 cd 到alimama文件夹根目录
mysqldump -uroot -p alimama > alimama.sql ## Open Database CREATE DATABASE IF NOT EXISTS alimama default charset utf8 COLLATE utf8_general_ci;
use alimama
source c:\.......(db 路径)\alimama.sql