- Fork the project.
- Clone the repo.
git clone https://github.com/SamRB-dev/Kry0Steg.git
- 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>
- Make changes on the code and Stage the changes.
git add .
- Commit the changes.
git commit
or
git commit -m "<message>"
- Push the changes.
git push
- Create a pull request.
- Switch to the main branch.
git checkout main
- Do a fresh pull to update the main repo.
git pull
- Switch to your working branch.
git checkout <branch-name>