Note
Remember to pull from main before pushing by running git pull or git pull origin main
- To clone the repo run
git clone https://github.com/rebakevin/linux-commands.git - To create your branch, run
git checkout -b <your name> - Creata a file with
touch <your name>_commands.txtand add some content there - Then do
git add .to add it to staging - Then do
git commit -m "<add some random message>"to commit the changes - Then do
git push --set-upstream origin <your branch name>to push it to the repository - After that, you can create a pull request and review your peers' pull requests
- We will then merge it to the main branch.