2020-04-14 02:29:37 -04:00
|
|
|
## Getting started
|
|
|
|
|
|
|
|
Fork this repository (Click the Fork button in the top right of this page, click your Profile Image)
|
|
|
|
Clone your fork down to your local machine
|
|
|
|
|
|
|
|
git clone https://github.com/your-username/awesome-vulnerable.git
|
|
|
|
|
|
|
|
Create a branch
|
|
|
|
|
|
|
|
git checkout -b branch-name
|
|
|
|
|
|
|
|
Make your changes
|
|
|
|
|
|
|
|
- Add any new useful links to resources with respect to pentesting and vulnerable testintg environments
|
|
|
|
- Add your name to the CONTRIBUTORS.md file
|
|
|
|
|
2020-10-01 15:51:39 -04:00
|
|
|
Commit and push
|
2020-04-14 02:29:37 -04:00
|
|
|
|
|
|
|
git add .
|
|
|
|
|
2020-10-01 15:51:39 -04:00
|
|
|
//It is used to stage the changed file.
|
|
|
|
|
2020-04-14 02:29:37 -04:00
|
|
|
git commit -m 'Commit message'
|
2020-10-01 15:51:39 -04:00
|
|
|
|
|
|
|
//It is used to commit the file with a short message.
|
2020-04-14 02:29:37 -04:00
|
|
|
|
|
|
|
git push origin branch-name
|
2020-10-01 15:51:39 -04:00
|
|
|
|
|
|
|
//It is used to push the file into the local repository.
|
2020-04-14 02:29:37 -04:00
|
|
|
|
|
|
|
Create a new pull request from your forked repository (Click the New Pull Request button located at the top of your repo)
|
|
|
|
|
|
|
|
Wait for your PR review and merge approval
|
|
|
|
|
|
|
|
<b>Star this repository if you had fun</b>
|