您的位置:首页 > 编程语言

关于在Github创建仓库的过程

2012-04-13 15:45 302 查看

Global setup:

Set up git
git config --global user.name "Your Name"
git config --global user.email wangjia199055@126.com

Next steps:

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

Existing Git Repo?

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

Importing a Subversion Repo?

Check out the guide for step by step instructions.

When you're done:

Continue
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: