Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions BROKEN_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@

Thiss documnt explans how you can forked repo and start work on its. please follow thse steps:

2. First Fork repo on GitHUb from the top-right side (dont forget this step is crucial!).
1. First Fork repo on GitHUb from the top-right side (dont forget this step is crucial!).

1. clone it to ur lapotp by running folowing comman:
2. clone it to ur lapotp by running folowing comman:
```
git clone https://github/com/username/repo-name.git
```

4. Change your path to the folder where you have cloned the repo:
3. Change your path to the folder where you have cloned the repo:
```
cd into repo-name
```

10. creat a new BRANCH for ur changes (this is required!)
4. creat a new BRANCH for ur changes (this is required!)
```
git branch -b myFeatureFix
```

3. make change u wants to do in file. add cool feature or remove bugs or do both but dont break code, then add files using below command:
5. make change u wants to do in file. add cool feature or remove bugs or do both but dont break code, then add files using below command:
```
git add .
```
Expand All @@ -30,7 +30,7 @@ git add .
git commt -m "i fixed some issue maybe or not"
```

2. Push to branch but be carefull of name u use:
7. Push to branch but be carefull of name u use:
```
git push -u origin maain
```
Expand Down