Skip to content

Commit 3b07906

Browse files
committedOct 22, 2017
Improve goals, add some bash commands
1 parent bfe8ba1 commit 3b07906

File tree

1 file changed

+35
-7
lines changed

1 file changed

+35
-7
lines changed
 

‎README.md

+35-7
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ like Github too, format nicely as HTML.
1313

1414
**Goal:** I know how to create a local Git repository.
1515

16-
How: *(Your answer here)*
17-
18-
What does Git do to create a local repository?
16+
What does Git do when initialising a local repository?
1917

2018
* Your answer here
2119

@@ -26,8 +24,6 @@ What does Git do to create a local repository?
2624

2725
**Goal:** I can explain what a “commit” is.
2826

29-
**Goal:** I know how to find help about a command
30-
3127
I want to remember:
3228

3329
* *(New stuff you learned)*
@@ -44,21 +40,31 @@ I want to remember:
4440

4541
**Goal:** I understand when branches are used and how they are merged back.
4642

43+
**Goal:** I know how to find help about a command
44+
4745
I have the following branches:
4846

4947

5048
### Some conflicts need resolving
5149

5250
**Goal:** I am able to resolve merge conflicts.
5351

54-
**Goal:** I know when to rebase before merging.
52+
**Goal:** I can simplify the history by rebasing.
5553

5654

5755
### Stash and Remote
5856

5957
**Goal:** I know how to temporarily undo my changes.
6058

61-
**Goal:** I can explain what a remote is good for.
59+
**Goal:** I can push my changes to a remote.
60+
61+
62+
### When to commit/branch?
63+
64+
**Goal:** I know when it makes sense to create a commit or a branch.
65+
66+
67+
6268

6369

6470
## Oh vi*!
@@ -70,6 +76,28 @@ Most important commands for me:
7076
* *(Your text here)*
7177

7278

79+
80+
81+
82+
## Command line, Git Bash
83+
84+
Show current directory
85+
86+
pwd
87+
88+
Change to subdirectory and back to parent
89+
90+
cd subdir
91+
cd ..
92+
93+
List files in current directory
94+
95+
ls -lah
96+
97+
98+
99+
100+
73101
## References
74102

75103
* `git help <command>`

0 commit comments

Comments
 (0)
Please sign in to comment.