-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
36 lines (21 loc) · 668 Bytes
/
Copy pathREADME
File metadata and controls
36 lines (21 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Global setup:
Set up git: http://help.github.com/set-up-git-redirect
git config --global user.name "Author Name"
git config --global user.email user@email.com
Next steps:
mkdir misc
cd misc
git init
touch README
git add README
git commit -m 'first commit'
git remote add github git@github.com:andersonvom/misc.git
git push -u github master
Existing Git Repo?
cd existing_git_repo
git remote add github git@github.com:andersonvom/misc.git
git push -u github master
Importing a Subversion Repo?
https://github.com/andersonvom/misc/imports/new
When you're done:
https://github.com/andersonvom/misc