https://github.com/tebogoyungmercykay/git_and_github_beginer_guide-repo_init
This repository Is a guide for coding beginners
https://github.com/tebogoyungmercykay/git_and_github_beginer_guide-repo_init
creating-a-readme creating-a-repository deleting-a-repository example-commit first-programming-project markdown pulling-commits-from-master pushing-an-existing-repository unfork-a-repository version-control
Last synced: 3 months ago
JSON representation
This repository Is a guide for coding beginners
- Host: GitHub
- URL: https://github.com/tebogoyungmercykay/git_and_github_beginer_guide-repo_init
- Owner: TebogoYungMercykay
- Created: 2022-09-02T22:11:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-08T13:42:38.000Z (almost 2 years ago)
- Last Synced: 2025-01-21T10:51:16.106Z (5 months ago)
- Topics: creating-a-readme, creating-a-repository, deleting-a-repository, example-commit, first-programming-project, markdown, pulling-commits-from-master, pushing-an-existing-repository, unfork-a-repository, version-control
- Language: C#
- Homepage:
- Size: 336 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Beginer's Guide For Your First Repository
---This repository Is a guide for coding beginners
---
The repository has almost all the necessary infomation about repositories on Github. Information includes cloning, forking, deleting repositories and furthermore.
---
You need to have Git installed in order to be able to follow through the guide.
### Installing Git: https://www.youtube.com/watch?v=4xqVv2lTo40&ab_channel=TravelsCode
---
---
##### FIRST EVER PROGRAMME- Main.cpp
```cpp
#include
using namespace std;
int main()
{
cout<<"Hello World!";
return 0;
}
- Main.js
```js
console.log("Hello World!");
- Main.cs
```cs
using System;
public class MainProgram
{
public static void Main(string[] args)
{
Console.WriteLine("Hello Mono World");
}
}
- Main.c
```c
#include
int main() {
printf("Hello world");
return 0;
}
- Main.java
```java
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
- Main.php
```php
- Main.py
```python
print("Hello world")