GitHub使用简介

GITHUB 使用文档

安装好github工具下载地址谷歌一下

通过github命令行上次项目到github服务器

首先注册github服务器,在创建github的respository.

在你要上传的项目上右键Git Bash

在命令行输入:git init

在上传你要上传的文件:git    addd  xxx文件名。上传整个项目:git add .

加上备注 :git commit –m ‘java project’

提交到服务器:

git remote add origin [email protected]:xuhongxin[用户名]/deom.git[创建的respository]  

执行创建:git push –u origin master

Master表示:[分区]

下载项目:下载到哪个文件夹右键Git Bash

Git clone [email protected]:xuhongxin[用户名]/deom.git[创建的respository]  

Git status查看状态

你可能感兴趣的:(github)