1. Start by making a Fork of the git-github-practice repository. Click on the Fork symbol at the top right corner.
2. Clone your new fork of the repository in the terminal/CLI on your computer with the following command:
git clone https://github.com/<your-github-username>/git-github-practice3. Navigate to the newly created git-github-practice project directory:
cd git-github-practice4. Set upstream command:
git remote add upstream https://github.com/CryptoverseWeb3/git-github-practice.git5. Create a new branch:
git checkout -b YourBranchName6. Sync your fork or your local repository with the origin repository:
git fetch upstreamgit merge upstream/main7. Make your changes to the source code.
- [Kabir](https://github.com/kabir0x23)8. Stage your changes and commit:
package.json or package-lock.json file, until and unless you have installed the new packages.
git add . or git add *. Instead, stage your changes for each file/folder
git add Contributors.mdgit commit -m "<your_commit_message>"9. Push your local commits to the remote repository:
git push origin YourBranchName10. Create a Pull Request!
11. Congratulations! You've made your first contribution to git-github-practice! ??
? After this, the maintainers will review the PR and will merge it if it helps move the git-github-practice project forward. Otherwise, it will be given constructive feedback and suggestions for the changes needed to add the PR to the codebase.