标准git流程

来源:互联网 发布:快穿之那串数据有毒 编辑:程序博客网 时间:2024/05/16 15:58

Global setup:

Next steps:

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

Existing Git Repo?

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

Importing a Subversion Repo?

  Check out the guide for step by step instructions.      

When you're done:

  Continue
原创粉丝点击