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
相关文章:
-
2021-09-09
-
2021-10-25
-
2022-01-09
-
2021-11-21
-
2021-11-29