GitHub命令精简教程

Github其实也可以作为文件分享的地方,但是免费空间只有300M,所以不能存放大文件,否则可以成为一个分享资源的下载站,而且非常方便。
常用命令:
git add .   //添加所有的文件到索引
git commit  //向本地源码库提交,会打开默认vi编辑器写 “注释”
git remote add origin [email protected]:viprs/Hello-World.git   //添加远程目标为origin
git push origin master  //把本地源码库push到Github上
git pull origin  master  //从Github上pull到本地源码库
 
注意:(git commit -m 'remove aa.txt'  -a  千万不要用-a强制全部提交,一个项目提交几次就占用150M/300M
例子:新建一个“ ProjClean”项目,下面是具体操作步骤。

Global setup:

 Set up git  告诉github你是谁

  git config --global user.name "viprs"

  git config --global user.email [email protected]

      

Next steps:

  mkdir ProjClean

  cd ProjClean

  git init

  touch README

  git add README

  git commit -m 'first commit'

  git remote add origin https://github.com/viprs/ProjClean.git

  git push -u origin master

      

Existing Git Repo?

  cd existing_git_repo

  git remote add origin https://github.com/viprs/ProjClean.git

  git push -u origin master  //-u 是提示用户名、密码

      

Importing a Subversion Repo?

  Check out the guide for step by step instructions.

      

When you're done:

  Continue

你可能感兴趣的:(github)