File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 5
5
### GNU/Linux
6
6
7
7
#### Using pdflatex
8
- ``` bash
8
+ ``` sh
9
9
sudo apt-get install texlive
10
10
wget -O res.cls http://www.ctan.org/tex-archive/macros/latex/contrib/resume/res.cls
11
11
pdflatex aaronrobson-cv.tex
12
12
```
13
13
14
14
#### Using docker
15
- ``` bash
15
+ ``` sh
16
16
docker run --rm -i \
17
17
--user $( id -u ${USER} ) :$( id -g ${USER} ) \
18
18
--net=none \
@@ -24,7 +24,7 @@ docker run --rm -i \
24
24
25
25
#### Automatically
26
26
Use locally installed ` pdflatex ` if present and if not try ` docker ` .
27
- ``` bash
27
+ ``` sh
28
28
make
29
29
```
30
30
37
37
38
38
### To push to the [ aaronrobson.uk/cv] ( http://www.aaronrobson.uk/cv/ ) website
39
39
Run this to find what the next tag should be:
40
- ``` bash
40
+ ``` sh
41
41
git tag
42
42
```
43
43
44
44
Then tag and upload like this:
45
- ``` bash
45
+ ``` sh
46
46
git tag vx.x
47
47
git push --tags
48
48
```
49
49
50
50
Raise the PR in github, but don't merge it yet (https://stackoverflow.com/questions/60597400/how-to-do-a-fast-forward-merge-on-github ).
51
51
52
52
Then merge locally with:
53
- ``` bash
54
- git checkout your-new-branch && git merge master --ff-only
53
+ ``` sh
54
+ git checkout master && git merge your-new-branch --ff-only
55
55
```
56
56
57
57
And upload like this:
58
- ``` bash
58
+ ``` sh
59
59
git checkout master
60
60
git push
61
61
```
You can’t perform that action at this time.
0 commit comments