mirror of
https://github.com/kaiiyer/awesome-vulnerable.git
synced 2024-10-01 08:25:39 -04:00
0b5561bf5b
* Updated Smart OS description * Updated CONTRIBUTING.md Added comments for add, commit and push git commands,
36 lines
952 B
Markdown
36 lines
952 B
Markdown
## 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
|
|
|
|
Commit and push
|
|
|
|
git add .
|
|
|
|
//It is used to stage the changed file.
|
|
|
|
git commit -m 'Commit message'
|
|
|
|
//It is used to commit the file with a short message.
|
|
|
|
git push origin branch-name
|
|
|
|
//It is used to push the file into the local repository.
|
|
|
|
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>
|