# hello-spring **Repository Path**: wjv/hello-spring ## Basic Information - **Project Name**: hello-spring - **Description**: No description available - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-18 - **Last Updated**: 2024-08-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hello-spring - 本地仓库与远程仓库管理关联? ``` // 本地初始化一个仓库,设置远程仓库地址后再做push $ git init $ git remote add origin https://gitee.com/用户个性地址/HelloGitee.git // 这样就完成了版本的一次初始化。 // 接下去,进入你已经初始化好的或者克隆仓库的目录,然后执行: $ git pull origin master // 修改/添加文件,否则与原文件相比就没有变动。 $ git add . $ git commit -m "第一次提交" $ git push origin master ```