Urgent.News

What's breaking now, across thousands of outlets.

Tech

My First GitHub Project: From a Local Folder to GitHub Using Git and SSH.

Introduction Git is local software that i installed on my machine to help me manage codes while github is an online platform that host git repositories. This is a step by step guide of how i used git to publish my first project to github while a SSH key for a secure connection with github. Tools Used This task was done in the following environments Windows Operating system Git git --version git…

Git is a local software installed on a computer to manage coding projects, while GitHub is an online platform that hosts Git repositories. This guide outlines how to publish a first project to GitHub using Git and an SSH key for a secure connection. The tools used include Windows Operating System, Git version 2.55.0.windows.4, a GitHub account, and SSH key generation.

To link Git and GitHub, the following steps were taken:

1. Configure Git by setting the username and email associated with the GitHub account using the commands `git config --global user.name alfieotuko` and `git config --global user.email alfiemauwa7@gmail.com`.

2. Generate an SSH key by running `ssh-keygen -t ed25519 -C alfiemauwa7@gmail.com`. This creates a private and a public key. The public key should be copied and pasted into the GitHub account settings under SSH AND GPG keys.

3. Verify the SSH key by typing `ssh -T git@github.com`. A successful message will be displayed.

4. Create a local folder to hold the project data by using the commands `cd Desktop`, `mkdir kenya-hospital-records-analysis`, and `cd kenya-hospital-record-analysis`.

5. Create a README.md file inside the project folder and a data folder using the commands `touch README.md` and `mkdir data`.

6. Initialize a Git repository by running `git init` and check the current branch with `git status`. It should show the branch as 'main'.

7. Stage and commit the changes by using `git add .` followed by `git commit -m "first commit for kenya-hospital-records-analysis"`.

8. Link the local Git repository to the GitHub repository by adding the remote origin with `git remote add origin git@github.com:alfieotuko/kenya-hospital-records-analysis`.

9. Push the changes to GitHub using `git push -u origin main`.

After completing these steps, the local folder is saved and hosted on a cloud-based GitHub repository. The SSH key provides a secure connection for accessing the hosted project. The GitHub link to the repository is alfieotukoGithub.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Also reported by 1 other outlet

Read the original at dev.to →

More in Tech

Github Project Workflow: Local Folder - Github

Introduction The world, as we know it, is changing and data is at the center of it all. As a beginner at LuxdevHq , I will cover Git and Github , how they connect and especially the process to follow…

  • Configure Git account and test SSH connection
  • Create project folder and README file
  • Push project to Github using git push

Tauri Apps without Rust? Write Your Backend in Javascript

TL;DR I wrote Tauri-specific rust bindings for BareKit as a Tauri plugin so you can write your backend in javascript without touching rust at all (other than enabling the plugin) or split your logic…

  • Tauri plugin tauri-plugin-bare-kit allows backend in Javascript without Rust.
  • BareKit provides asynchronous, event-driven architecture built on libuv and V8.
  • Plugin enables simple apps to run backend in Javascript while allowing complex use cases in Rust.

JarService / zhima Malware Entering via Insecure Android Car Head Unit Update Paths

1. Basic Information Article Name : The invisible passenger in your car Source : Kaspersky Securelist Publication Date : 2026-08-21 Update Date : None Severity : High Original Source : Kaspersky…

  • JarService and zhima malware infiltrated Android car head units via insecure update paths.
  • Malware distributed through legitimate DoFun Android car head unit updates using MQTT.
  • Malware collected device information every 90 minutes and relayed data to C2 server.

Argentina China Technology Cluster Launched at UBA

The Argentina China technology cluster, CITAC, was launched at the University of Buenos Aires on 20 August 2026. It aims to boost technological cooperation between the two countries through joint…

  • Argentina and China launched CITAC at UBA on 20 August 2026
  • CITAC aims to foster cooperation in AI, quantum tech, and robotics
  • UBA hosts cluster with 10% of CONICET researchers

More from Sunday 23 August →