# test **Repository Path**: longshu/test ## Basic Information - **Project Name**: test - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-11-06 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README - Git 全局设置: ``` git config --global user.name "龙叔" git config --global user.email "349759857@qq.com" ``` - 创建 git 仓库: ``` mkdir test cd test git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://git.oschina.net/longshu/test.git git push -u origin master ``` - 已有项目? ``` cd existing_git_repo git remote add origin https://git.oschina.net/longshu/test.git git push -u origin master ```