访问次数
我的另一个总结性博客: todototry 大米粒

我的 github 使用

Global setup:

 Set up git
  git config --global user.name "username"
  git config --global user.email my@gmail.com
        

Next steps:

  mkdir depot
  cd depot
  git init
  touch README
  git add README
  git commit -m 'first commit'
  git remote add origin git@github.com:my/depot.git
  git push -u origin master
      

Existing Git Repo?

  cd existing_git_repo
  git remote add origin git@github.com:my/depot.git
  git push -u origin master
      

Importing a Subversion Repo?

  Click here
      

When you're done:

  Continue
posted @ 2011-08-07 23:50  fandyst  阅读(304)  评论(0编辑  收藏  举报