How to navigate the iGEM Wiki repository
- Go to terminal/command line
- Navigate to the project folder (using cd)
- Clone the repo to create a local copy on your computer by clicking "clone" under the repo name to copy the clone url
- Go back to terminal
- Type in this command and paste the url you copied
git clone https://github.com/YOUR-USERNAME/YOUR-REPOSITORY
- Press enter. That should clone the repo.
- Navigate to the new folder that is now under your project folder
- Execute the commands below
- Go to terminal/command line
- Navigate to the project folder (using cd)
- Execute the following commands
git add .
git commit -m "your commit message"
git push origin master
To check what's going on, use
git status
git pull origin master