Skip to content

Commit c326c2c

Browse files
author
tej
committed
Conflicts: handout.md
2 parents 578fc59 + 3c07724 commit c326c2c

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed

handout.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,52 @@ git commit -m "first commit"
88
git remote add origin https://github.com/Tejkarthik/lab2.git
99
git push -u origin master
1010

11+
# Git Notes
12+
This is the Git notes from the 2-day training session at ImprovingEnterprises on Jan 21-22, 2015.
13+
## Git Overview
14+
15+
## Command Line Cheat Sheet
16+
Verify Git installation
17+
```
18+
git --version
19+
```
20+
Get help with Git
21+
```
22+
git help
23+
```
24+
### Working Locally
25+
Start git at a folder
26+
```
27+
git init
28+
```
29+
30+
### Working with Remote Repos
31+
32+
## Discussions
1133
## Basic Git commands
1234

1335
1. Git Init
1436
1. Git add .
1537
3. Git commit -m "lab2"
38+
# Git Notes
39+
This is the Git notes from the 2-day training session at ImprovingEnterprises on Jan 21-22, 2015.
40+
## Git Overview
41+
42+
## Command Line Cheat Sheet
43+
Verify Git installation
44+
```
45+
git --version
46+
```
47+
Get help with Git
48+
```
49+
git help
50+
```
51+
### Working Locally
52+
Start git at a folder
53+
```
54+
git init
55+
```
56+
57+
### Working with Remote Repos
58+
59+
## Discussions

handout.md.orig

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<<<<<<< HEAD
2+
My Notes Here
3+
Create a new repository
4+
## COMMANDS TO CREATE A REPOSITORY
5+
echo # lab2 >> README.md
6+
git init
7+
git add README.md
8+
git commit -m "first commit"
9+
git remote add origin https://github.com/Tejkarthik/lab2.git
10+
git push -u origin master
11+
12+
## Basic Git commands
13+
14+
1. Git Init
15+
1. Git add .
16+
3. Git commit -m "lab2"
17+
=======
18+
# Git Notes
19+
This is the Git notes from the 2-day training session at ImprovingEnterprises on Jan 21-22, 2015.
20+
## Git Overview
21+
22+
## Command Line Cheat Sheet
23+
Verify Git installation
24+
```
25+
git --version
26+
```
27+
Get help with Git
28+
```
29+
git help
30+
```
31+
### Working Locally
32+
Start git at a folder
33+
```
34+
git init
35+
```
36+
37+
### Working with Remote Repos
38+
39+
## Discussions
40+
>>>>>>> 3c077245a4292b628e37d3ecc9462cab960347c1

0 commit comments

Comments
 (0)