-
Notifications
You must be signed in to change notification settings - Fork 2
Home
To participate in this exercise, you should have received SSH credentials. If you haven't, please contact [email protected] for assistance with initial configuration. Please ensure you provide your Github username to ensure access control is set up properly.
In this exercise, you will be connecting to a server hosting a development environment for you. This guide will walk through how to connect to this server to make changes, view the changes in your browser, and provide instructions for configuring your FTP client if needed.
If you would prefer to set up and use your own development environment, you can see the project requirements and installation steps.
Hostname: <username>.sandbox.baseplatform.io
You can connect to your environment using SSH with the username and password provided.
Once connected, you can use vim
or nano
to edit files. If you would prefer to use an FTP client to upload changes, you can find configuration instructions here. Your FTP client must be capable of SFTP (FTP over SSH), or use one of the recommended clients for your platform.
You can view your instance of the application by visiting the hostname above in your browser (replacing <username>
with your provided username.
To commit a change, use the command-line git
application.
- To see what files are changed, execute
git status
. - To see what is changed, execute
git diff[ filename]
. - To add a file to be committed, execute
git add <filename>
. - To commit your changes, execute
git commit -m '<message>'
. - To push your changes to your repository, execute
git push
.