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
+25-4
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,18 @@ Take a look to the [website](https://phuse-org.github.io/git-in-statistical-prog
32
32
You can get involved in one of the following ways
33
33
34
34
2.1 - If you wish to join the working group please [go here](https://advance.hub.phuse.global/wiki/spaces/WEL/pages/90472449/The+Use+of+Git+in+Statistical+Programming) for the leads to reach out to them
35
+
35
36
2.2 - You can get involved in discussion via the issues
37
+
36
38
2.3 - You can propose a merge request via a fork if you see something that needs fixing
37
39
38
40
39
41
### 2.3. Using Git, to propose changes!
40
42
41
-
#### 2.3.1 About cloning, branching and pushing
43
+
44
+
<details>
45
+
46
+
<summary>2.3.1 About cloning, branching and pushing</summary>
42
47
43
48
Basic steps to get into this "Git world"
44
49
@@ -63,7 +68,14 @@ Basic steps to get into this "Git world"
63
68
💡NOTE: If you like to use your Chat GPT to teach you more about these steps, use it. No fear to break anything!
64
69
💡NOTE2: There is a wonderful tutorial in [Coursera] (https://www.coursera.org/learn/making-data-science-work-for-clinical-reporting#modules) to practise on your own how to do these steps. Very easy and well explained (and you get a certification 🎓 at the end!)
65
70
66
-
#### 2.3.2 About R
71
+
</details>
72
+
73
+
74
+
75
+
<details>
76
+
77
+
<summary>2.3.2 About R</summary>
78
+
67
79
68
80
This repository will be using quarto. To support this repository, there is an **renv lock** file which is currently bare bones.
69
81
(This means we can keep traceability of the R packages we are using within this repo)
@@ -79,12 +91,21 @@ renv::snapshot()
79
91
80
92
For the poster it would be nice to have some stats in a jupyter or Rmarkdown about issues around Git (or some charts explaining key points).
81
93
To start with,
82
-
0 - clone the repo in your laptop
83
-
1 - create your own git branch:
94
+
95
+
0 - after you have clones the repo in your laptop
96
+
97
+
1 - you are in your branch
98
+
84
99
```sh
85
100
# in terminal, within your project directory
101
+
#create your own git branch:
86
102
git checkout -b yourname_dev
103
+
# or switch to your branch
104
+
git switch yourname_dev
87
105
```
106
+
88
107
2- A folder called **"script_ideas"** will be the SANDBOX with your scripts/ collaborative scripts/pictures to get some charts/numbers around this topic (for the paper or poster, or to discuss in our meetings).
0 commit comments