diff --git a/BROKEN_GUIDE.md b/BROKEN_GUIDE.md index f8a6d66..f1008cb 100644 --- a/BROKEN_GUIDE.md +++ b/BROKEN_GUIDE.md @@ -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 . ``` @@ -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 ```