- Determine that Node.js is installed by opening Terminal and typing
npm -v - If Node.js is not installed follow this link to install click here
- If Node.js is installed then in terminal use the command
cdto go to the directory where you want the files located. - In Terminal type
git clone <repositry link>then hit enter. - Once downloaded cd to the website directory.
- In Terminal type
npm install. This should install all the necessary packages. - To run the compiler type
gulp sass:watch
Before you commit you need to add the files you have changed with git add .
Once changed files have been added you can use git commit -m "MESSAGE"
Please only commit when you have finished for the day or completed a feature
When applicable push the repositry to GitHub using git push
To update your files with pushed files use the command git pull
- Type
git branch <branch name> - Always checkout to branch using
git checkout <branch name> - Send branch to GitHub using
git push -u origin <branch name>
- Checkout to master branch using
git checkout master - Add branch using
git merge <branch name> - Push the merged data to GitHub using
git push