-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 23aa65b
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Global setup: | ||
Set up git | ||
git config --global user.name "Your Name" | ||
git config --global user.email [email protected] | ||
|
||
Next steps: | ||
mkdir 3kfb | ||
cd 3kfb | ||
git init | ||
touch README | ||
git add README | ||
git commit -m 'first commit' | ||
git remote add origin [email protected]:wei2009/3kfb.git | ||
git push -u origin master | ||
|
||
Existing Git Repo? | ||
cd existing_git_repo | ||
git remote add origin [email protected]:wei2009/3kfb.git | ||
git push -u origin master | ||
|
||
Importing a Subversion Repo? | ||
Check out the guide for step by step instructions. | ||
|
||
When you're done: | ||
Continue |