-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmp
More file actions
26 lines (17 loc) · 656 Bytes
/
tmp
File metadata and controls
26 lines (17 loc) · 656 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
Quick setup — if you've done this kind of thing before
or
HTTP - https://github.com/oldgeeksguide/testing.git
SSH - git@github.com:oldgeeksguide/testing.git
We recommend that every repository has a README, LICENSE, and .gitignore
Create a new repository on the command line
Uploading existing repo to git:
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/oldgeeksguide/testing.git
git push -u origin master
OR
Push an existing repository from the command line
git remote add origin https://github.com/oldgeeksguide/testing.git
git push -u origin master