An open API service indexing awesome lists of open source software.

https://github.com/hrithiqball/diploma-in-computer-science

Repository of my personal diploma course source code for CS110 in UiTM Kedah 2020-2023
https://github.com/hrithiqball/diploma-in-computer-science

c cpp css html java javascript php prolog python

Last synced: 3 months ago
JSON representation

Repository of my personal diploma course source code for CS110 in UiTM Kedah 2020-2023

Awesome Lists containing this project

README

          


uitm

# Diploma in Computer Science(CS110)

### Cloning a git repository

1. Install git from [official website](https://git-scm.com/downloads) according to your operating system
2. Copy git link from a repository (http/git)

git-clone

3. Open terminal in folder and paste down this command
`git clone (link-of-the-repository)
4. Open the repository in Visual Studio Code by using

```bash
cd directory/of/repository
code .
```

### Initialising a git repository for an ongoing project

1. Open terminal of current working directory. In the terminal of Visual Studio Code write command `pwd` to get current working directory
2. Initialise git repository with `git init`
3. Push to github or any other source control platform(Bitbucket, Gitlab etc.) account
4. Commit with source control extension or using cli `git commit -m Initial commit` in terminal

You're all set! Happy developing!