Skip to content

LiewZhengXian/UCCD2063-Assignment

Repository files navigation

UCCD2063-Assignment

Download git or use git on visual studio code

git download link: https://git-scm.com/downloads git in vs code tutorial video: https://www.youtube.com/watch?v=i_23KUAEtUM

How to get started with git cli

  1. Open cmd and clone repository to code on your desktop git clone https://github.com/LiewZhengXian/UCCD2063-Assignment.git

  2. Go to the directory with .git file

cd UCCD2063-Assignment
  1. Git add to stage all the files in your directory before committing
git add .
  1. Use git status to check changes (optional)
git status
  1. Git commit
git commit -m "Your_comment"
  1. Push your code to repository
git push 

You can create a development branch for yourself using this command

git checkout -b <branch name>

To switch between branch

git checkout <another branch>

To update code from github repo to your local directory

git pull

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors