Use this link to access the project instructions for this project.
Create a remote repository for this project using git clone {{YOUR REPO LINK}}
. Get the repository link in the top right corner of the screen.
Each time you work on something in the project, you must do the following steps.
-
Navigate to the directory of your remote repository using
cd {{folder-name}}
-
create a branch separate from the main branch. To do this, in the terminal type
git branch {{branch-name}}
- The
branch-name
should correlate to the feature you are working on
-
Checkout the branch you created using
git checkout {{branch-name}}
-
Save the files you worked on in the remote directory you are working in.
-
Add the files you worked on to a branch using
git add .
-
Commit the files to your branch using a commit message using
git commit -m "{{your commit message explaining your changes}}"
-
Push the changes to the working directory using
git push
-
Create a pull request to merge with the main branch in github.
Look here for a list of useful github commands that you might use in your terminal.