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
{{ message }}
This repository was archived by the owner on Sep 11, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: NEWCOMERS.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,17 @@ To make changes to a repository, follow these steps;
7
7
8
8
# Clone your fork to your local machine
9
9
This simply means getting a copy of the repository on your personal computer.
10
-
On your computer terminal, cd into the directory you want to clone the repo.
10
+
On your computer terminal, cd into the directory you want to clone the repo to.
11
11
```
12
12
cd "directory" note: directory here, should be the name of your chosen directory
13
13
```
14
-
now, Enter this,
14
+
now, enter this,
15
15
```
16
16
git clone "paste the url you copied here"
17
17
```
18
18
19
19
# Create a Branch
20
-
To work on a new feature or fix a bug, it's important that you create a new branch. this keeps your changes seperate from the master branch for easy management of multiple pull requests for each completed task.
20
+
To work on a new feature or fix a bug, it's important that you create a new branch. this keeps your changes seperate from the master branch for easy management of multiple pull requests for each completed task.
21
21
Enter this
22
22
```
23
23
git checkout master
@@ -32,7 +32,7 @@ git branch "your-branch-name"
32
32
git checkout "your-branch-name"
33
33
```
34
34
35
-
Now you can go ahead and effect the desired changes.
35
+
Now you can go ahead and affect the desired changes.
36
36
37
37
## Submitting your changes (a Pull Request)
38
38
on your terminal, Enter this to check the modified files
0 commit comments