Skip to content

Commit aa6ed1a

Browse files
committed
format code text
1 parent 7aa8808 commit aa6ed1a

File tree

1 file changed

+49
-17
lines changed

1 file changed

+49
-17
lines changed

README.md

Lines changed: 49 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,33 @@ The resulting jekyll theme uses Ruby >=2.5, GCC and Make.
1313

1414
- Copy the brainhack repository
1515

16-
'git clone https://github.com/Brainhack-Donostia/brainhack-donostia.github.io.git'
16+
'''
17+
git clone https://github.com/Brainhack-Donostia/brainhack-donostia.github.io.git
18+
'''
1719

1820
- Move to brainhack repository
1921

20-
'cd brainhack-donostia.github.io.git'
22+
'''
23+
cd brainhack-donostia.github.io.git
24+
''''
2125

2226
- Install required gems
2327

24-
'bundle install'
28+
'''
29+
bundle install
30+
'''
2531

2632
- To check local changes or to display on a local host
2733

28-
'bundle exec jekyll serve --trace'
34+
'''
35+
bundle exec jekyll serve --trace
36+
'''
2937

3038
or
3139

32-
'jekyll serve'
40+
'''
41+
jekyll serve
42+
'''
3343

3444
# Git branches
3545

@@ -39,41 +49,61 @@ Commit and push changes on BHD2025 or a personal sub-branch from there. When you
3949

4050
- Changing to BHD2025 branch
4151

42-
'git checkout BHD2025'
52+
'''
53+
git checkout BHD2025
54+
'''
4355

4456
- Creating your sub-branch from BHD2025
4557

46-
'git checkout -b YourAmazingSubbranch'
58+
'''
59+
git checkout -b YourAmazingSubbranch
60+
'''
4761

4862
- Checking the status of the current branch
4963

50-
'git status'
64+
'''
65+
git status
66+
'''
5167

5268
- Adding untracked changes
5369

54-
'git add filename1'
70+
'''
71+
git add filename1
72+
'''
5573

5674
or to add all (not recommended)
5775

58-
'git add .'
76+
'''
77+
git add .
78+
'''
5979

6080
- Commit changes
6181

62-
'git commit -m "Your message explaining your commited work"'
82+
'''
83+
git commit -m "Your message explaining your commited work"
84+
'''
6385

6486
- Push changes from locall to repo
6587

66-
'git push -u origin BHD2025'
88+
'''
89+
git push -u origin BHD2025
90+
'''
6791

6892
- Merging with master (only if you know what you are doing)
6993

70-
'git checkout master'
94+
'''
95+
git checkout master
96+
'''
7197

72-
'git merge BHD2025'
98+
'''
99+
git merge BHD2025
100+
'''
73101

74102
- You could also push your commit to a specific branch intead of merging and without checkout master. Then you merge from the website GUI
75103

76-
'git push -u origin BHD2025'
104+
'''
105+
git push -u origin BHD2025
106+
'''
77107

78108
## How to use
79109

@@ -116,7 +146,8 @@ Portfolio subfolder contains the pictures to be displayed for the calendar and t
116146
### Team
117147

118148
Team members and info are in '_config.yml'You can add aditional information as twitter, facebook, stack-overflow and linkedin:
119-
'- name: Grogru
149+
'''
150+
- name: Grogru
120151
pic: babyyoda.png
121152
position: Cuteness leader
122153
social:
@@ -125,7 +156,8 @@ Team members and info are in '_config.yml'You can add aditional information as t
125156
- title: facebook
126157
url: #
127158
- title: stack-overflow
128-
url: #'
159+
url: #
160+
'''
129161

130162
=========
131163
For more details, read [documentation](http://jekyllrb.com/)

0 commit comments

Comments
 (0)