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
Copy file name to clipboardExpand all lines: README.md
+53-45Lines changed: 53 additions & 45 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,59 +7,73 @@ The resulting jekyll theme uses Ruby >=2.5, GCC and Make.
7
7
8
8
For more information on specific OS setting see: https://jekyllrb.com/docs/installation/
9
9
10
+
*IMPORTANT NOTE!* MacOS have a preinstalled ruby version that is not gonna work. Follow the official jekyll documentation to install other one outside main system. Finally, if you can't exec the server try runnin bundle update so that it uses the gems you already have *DO NOT PUSH GEM CHANGES TO MASTER!*
-To check local changes or to display on a local host
24
+
'bundle install'
24
25
25
-
$ bundle exec jekyll serve --trace
26
+
- To check local changes or to display on a local host
27
+
28
+
'bundle exec jekyll serve --trace'
26
29
27
30
or
28
31
29
-
$ jekyll serve
32
+
'jekyll serve'
30
33
31
-
#Git branches
34
+
#Git branches
32
35
33
36
Commit and push changes on BHD2023 or a personal sub-branch from there. When you are sure about your changes, push them to BHD2023 and open a pull request.
34
37
35
38
**NOTE: remember to run pull before working locally**
36
39
37
-
-Changing to BHD2023 branch
38
-
$ git checkout BHD2023
40
+
- Changing to BHD2023 branch
41
+
42
+
'git checkout BHD2023'
43
+
44
+
- Creating your sub-branch from BHD2023
39
45
40
-
- Creating your subranch from BHD2023
41
-
$ git checkout -b YourAmazingSubbranch
46
+
'git checkout -b YourAmazingSubbranch'
42
47
43
48
- Checking the status of the current branch
44
-
$ git status
45
49
46
-
- Adding untracked changes
47
-
$ git add filename1 filename2
48
-
or to add all
49
-
$ git add .
50
+
'git status'
51
+
52
+
- Adding untracked changes
53
+
54
+
'git add filename1'
55
+
56
+
or to add all (not recommended)
57
+
58
+
'git add .'
50
59
51
-
- Commit changes
52
-
$ git commit -m "Your message explaining your commited work"
60
+
- Commit changes
61
+
62
+
'git commit -m "Your message explaining your commited work"'
63
+
64
+
- Push changes from locall to repo
65
+
66
+
'git push -u origin BHD2023'
53
67
54
-
- Push changes from locall to repo
55
-
$ git push -u origin BHD2023
68
+
- Merging with master (only if you know what you are doing)
69
+
70
+
'git checkout master'
56
71
57
-
- Merging with master
58
-
$ git checkout master
59
-
$ git merge BHD2023
72
+
'git merge BHD2023'
60
73
61
-
- You could also push your commit to a specific branch intead of merging and without checkout master
62
-
$ git push -u origin master
74
+
- You could also push your commit to a specific branch intead of merging and without checkout master. Then you merge from the website GUI
75
+
76
+
'git push -u origin BHD2025'
63
77
64
78
## How to use
65
79
@@ -74,7 +88,7 @@ Within such folder you will find several html named after the section they stand
0 commit comments