File tree Expand file tree Collapse file tree 2 files changed +84
-0
lines changed Expand file tree Collapse file tree 2 files changed +84
-0
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,52 @@ git commit -m "first commit"
8
8
git remote add origin https://github.com/Tejkarthik/lab2.git
9
9
git push -u origin master
10
10
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
11
33
## Basic Git commands
12
34
13
35
1 . Git Init
14
36
1 . Git add .
15
37
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments