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
- Host: GitHub
- URL: https://github.com/hrithiqball/diploma-in-computer-science
- Owner: hrithiqball
- License: mit
- Created: 2023-01-11T08:19:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-13T14:30:56.000Z (over 2 years ago)
- Last Synced: 2025-07-26T05:33:07.535Z (11 months ago)
- Topics: c, cpp, css, html, java, javascript, php, prolog, python
- Language: C++
- Homepage:
- Size: 10.4 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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)

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!