diff --git a/README.md b/README.md index c2dfd1d..fede713 100644 --- a/README.md +++ b/README.md @@ -36,38 +36,60 @@ Our primary focus? Providing an inviting gateway for beginners itching to contri ### 1. Star Click the "Star" button at the top right of the repository page on GitHub to show your appreciation for the project. + +![Star the repo]() + + ### 2. Fork the repository: Click the "Fork" button at the top right of the repository page on GitHub. This will create a copy of the repository in your own GitHub account. +![Fork the repo]() +![Create fork]() + + +### 3. Clone your own forked repository to your local machine (Go to code option and click on copy link): + +![Copy button]() -### 3. Clone the forked repository to your local machine using the following command: -```bash -git clone https://github.com/Hackerspace2023/HackerSpace.git +### 3.1 After clonning open terminal on your machine and use the following command to clome the repository: ``` -> Replace your-username with your GitHub username. +git clone (the link you copied) +``` +![Clonning in local machine ]() + ### 4. Create a branch Make a meaningful name for your new branch, and then create and switch to it using this command: ``` -git checkout -b new-branch-name +git checkout -b (replace with the name of branch) ``` +you can see the branch name changes from master to patch-1 in this case +![Change branch ]() + ### 5. Make Changes Make the necessary changes or customizations to the code as needed. -After making your changes, you need to stage the changes for commit using the git add command. To stage all changes, use: +After making your changes, you need to stage the changes for committing them by using the "git add" command. To stage all changes, use: ``` git add . ``` +![Staging changes]() + + Commit your staged changes with a descriptive commit message that explains the purpose of your changes. Use the git commit command: ``` git commit -m "Your descriptive commit message here" ``` +![Commiting changes]() -Push Your Changes: +Push Your Changes to the desired branch: ``` -git push origin your-branch-name +git push origin (replace with your-branch-name) ``` +![Pushing changes]() + +Now sumbit the Pull request to the original repo. -Now sumbit the Pull request +![Create pull request]() ### To open it in your local computer.
`clone the repo`: diff --git a/assets/Screenshot (150).png b/assets/Screenshot (150).png new file mode 100644 index 0000000..4daf162 Binary files /dev/null and b/assets/Screenshot (150).png differ diff --git a/assets/Screenshot (151).png b/assets/Screenshot (151).png new file mode 100644 index 0000000..16b3235 Binary files /dev/null and b/assets/Screenshot (151).png differ diff --git a/assets/Screenshot (152).png b/assets/Screenshot (152).png new file mode 100644 index 0000000..b0db3b8 Binary files /dev/null and b/assets/Screenshot (152).png differ diff --git a/assets/Screenshot (155).png b/assets/Screenshot (155).png new file mode 100644 index 0000000..92065c8 Binary files /dev/null and b/assets/Screenshot (155).png differ diff --git a/assets/Screenshot (158).png b/assets/Screenshot (158).png new file mode 100644 index 0000000..b025fb1 Binary files /dev/null and b/assets/Screenshot (158).png differ diff --git a/assets/Screenshot (161).png b/assets/Screenshot (161).png new file mode 100644 index 0000000..99c2da1 Binary files /dev/null and b/assets/Screenshot (161).png differ diff --git a/assets/Screenshot (162).png b/assets/Screenshot (162).png new file mode 100644 index 0000000..080fdfe Binary files /dev/null and b/assets/Screenshot (162).png differ diff --git a/assets/Screenshot (163).png b/assets/Screenshot (163).png new file mode 100644 index 0000000..4a813fa Binary files /dev/null and b/assets/Screenshot (163).png differ diff --git a/assets/Screenshot (165).png b/assets/Screenshot (165).png new file mode 100644 index 0000000..9d77aec Binary files /dev/null and b/assets/Screenshot (165).png differ diff --git a/assets/Screenshot (166).png b/assets/Screenshot (166).png new file mode 100644 index 0000000..27f380e Binary files /dev/null and b/assets/Screenshot (166).png differ