Skip to content

Commit 34d790a

Browse files
committed
README: Add original comments from GitHub about a blank repo.
1 parent 3fe29f4 commit 34d790a

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.asciidoc

+33
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,36 @@ Gene Cumm's vCLI script collection
44

55

66
// https://github.com/github/markup#readme
7+
//////////////////////////////////////////
8+
Global setup:
9+
10+
Set up git
11+
git config --global user.name "Your Name"
12+
git config --global user.email [email protected]
13+
14+
15+
Next steps:
16+
17+
mkdir vCLI-scripts
18+
cd vCLI-scripts
19+
git init
20+
touch README
21+
git add README
22+
git commit -m 'first commit'
23+
git remote add origin https://github.com/geneC/vCLI-scripts.git
24+
git push -u origin master
25+
26+
27+
Existing Git Repo?
28+
29+
cd existing_git_repo
30+
git remote add origin https://github.com/geneC/vCLI-scripts.git
31+
git push -u origin master
32+
33+
34+
Importing a Subversion Repo?
35+
36+
Check out the guide for step by step instructions.
37+
http://help.github.com/import-from-subversion/
38+
//////////////////////////////////////////
39+

0 commit comments

Comments
 (0)