You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"titulo": "Got 15 minutes and want to learn Git?",
5
-
"tareas": [
6
-
"Git allows groups of people to work on the same documents (often code) at the same time, and without stepping on each other's toes. It's a distributed version control system.",
7
-
"Our terminal prompt below is currently in a directory we decided to name 'octobox'. To initialize a Git repository here, type the following command:"
8
-
],
9
-
"comando": "git init",
10
-
"errorMessages": [
11
-
"fatal: Not a git repository (or any of the parent directories): .git"
12
-
],
13
-
"error": "Did not create a Git repo",
14
-
"successMessages": [
15
-
"Initialized empty Git repository in /.git/"
16
-
],
17
-
"success": "Success!",
18
-
"repoStatus": "Empty"
2
+
"config": {
3
+
"repoName": "Octobox",
4
+
"errorComando": "comand not found"
5
+
},
6
+
"lecciones": {
7
+
"1": {
8
+
"orden": "1.1",
9
+
"titulo": "Got 15 minutes and want to learn Git?",
10
+
"tareas": [
11
+
"Git allows groups of people to work on the same documents (often code) at the same time, and without stepping on each other's toes. It's a distributed version control system.",
12
+
"Our terminal prompt below is currently in a directory we decided to name 'octobox'. To initialize a Git repository here, type the following command:"
13
+
],
14
+
"comando": "git init",
15
+
"errorMessages": [
16
+
"fatal: Not a git repository (or any of the parent directories): .git"
17
+
],
18
+
"alert": "Did not create a Git repo",
19
+
"successMessages": ["Initialized empty Git repository in /.git/"],
20
+
"repoStatus": {
21
+
"status": {
22
+
"msg": "No git repository"
23
+
}
24
+
}
25
+
},
26
+
"2": {
27
+
"orden": "1.2",
28
+
"titulo": "Checking the Status",
29
+
"tareas": [
30
+
"Good job! As Git just told us, our 'octobox' directory now has an empty repository in /.git/. The repository is a hidden directory where Git operates.",
31
+
"To save your progress as you go through this tutorial -- and earn a badge when you successfully complete it -- head over to create a free Code School account. We'll wait for you here.",
32
+
"Next up, let's type the git status command to see what the current state of our project is:"
33
+
],
34
+
"comando": "git status",
35
+
"errorMessages": [
36
+
"fatal: Not a git repository (or any of the parent directories): .git"
37
+
],
38
+
"alert": "Did not use git status",
39
+
"successMessages": [
40
+
"# On branch master",
41
+
"#",
42
+
"# Initial commit",
43
+
"#",
44
+
"nothing to commit (create/copy files and use 'git add' to track)"
0 commit comments