Skip to content

Latest commit

 

History

History
43 lines (42 loc) · 971 Bytes

Contribution.md

File metadata and controls

43 lines (42 loc) · 971 Bytes

How to contribute to this project

Initial Process

  1. Fork the project.
  2. Clone the repo.
git clone https://github.com/SamRB-dev/Kry0Steg.git
  1. Determine what changes you are making and create a local branch. Make sure your branch name is meaningful. For instance, say you are working on a header file called "Ciphers.h" for the project. Then your branch name should be "/path/Cipher.h-".
git checkout -b <branch-name>
  1. Make changes on the code and Stage the changes.
git add .
  1. Commit the changes.
git commit

or

git commit -m "<message>"
  1. Push the changes.
git push
  1. Create a pull request.

Continuation Process

  1. Switch to the main branch.
git checkout main
  1. Do a fresh pull to update the main repo.
git pull
  1. Switch to your working branch.
git checkout <branch-name>

Repeat step 4 to 7 from initial process.