# summary **Repository Path**: desse/summary ## Basic Information - **Project Name**: summary - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-01-10 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # summary 上传项目的步骤: 1. 首先,你需要执行下面两条命令,作为git的基础配置,作用是告诉git你是谁,你输入的信息将出现在你创建的提交中. git config --global user.name "你的名字或昵称" git config --global user.email "你的邮箱" 2. 然后在你的需要初始化版本库的文件夹中执行 git init git remote add origin <你的项目地址> //注:项目地址形式为:http://git.oschina.net/xxx/xxx.git或者 git@git.oschina.net:xxx/xxx.git fakewechat为例:git remote add origin https://git.oschina.net/desse/fakewechat.git 3. 进入你已经初始化好的或者克隆项目的目录,然后执行 git pull origin master git touch init.txt //如果已经存在更改的文件,则这一步不是必须的 git add . git commit -m "第一次提交" git push origin master 4. 然后如果需要账号密码的话就输入账号密码,这样就完成了一次提交。 本地配置SSH就不需要输入账号和密码了。 测试