git hub 基础帮助

新手……帮助的一个副本

Global setup:

Download and install Git
git config –global user.name “Your Name”
git config –global user.email farmer1992@gmail.com

Next steps:

mkdir another-test
cd another-test
git init
touch README
git add README
git commit -m ‘first commit’
git remote add origin git@github.com:tg123/another-test.git
git push origin master

Existing Git Repo?

cd existing_git_repo
git remote add origin git@github.com:tg123/another-test.git
git push origin master

Importing a Subversion Repo?

Click here

When you’re done:

Continue

Social tagging:

发表评论