We asked for your uni login when you registered. Please use that to login - it is case sensitive. You don't have a password yet. The password you enter the first time you log in will become your password.
cd
change directory
ls
list contents of directory
mkdir directory_name
make directory
rm filename
remove file
pwd
print current working directory
touch
create a blank file
nano filename
create and/or open file with the nano text editor
mv filename newfilename
move file or rename file (if in the same location)
git init
make a new repository
git add
stage file(s) for committing
git commit -m "message"
commit any staged files
git commit -a
stage and commit all files that have been modified or created
git push remotebranchname localbranchname
push changes to a remote repository
git pull remotebranchname localbranchname
pull changes from a remote repository
git checkout -b branchname
create a new branch and switch to it
git checkout branchname
switch to an existing branch