Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
YouTube Security VideosVisual Studio Code: VS Code Learn: Extending Agents(24.09.2026 um 21:00 Uhr)
•
YouTube Security VideosGoogle Cloud Tech: Turn Audio into Action with Gemini 3.5 Transcribe(24.09.2026 um 21:00 Uhr)
••••
Unix & Linux ServerUSN-8815-1: libass vulnerabilities(24.09.2026 um 16:57 Uhr)
•••••
YouTube Security VideosVisual Studio Code: VS Code Learn: Extending Agents(24.09.2026 um 21:00 Uhr)
•
YouTube Security VideosGoogle Cloud Tech: Turn Audio into Action with Gemini 3.5 Transcribe(24.09.2026 um 21:00 Uhr)
••••
Unix & Linux ServerUSN-8815-1: libass vulnerabilities(24.09.2026 um 16:57 Uhr)
•••••
Intelligence View
⚡ tsecurity.de Intelligence

My Journey at LuxDevHQ: Version Control (The Basics)

Version Control with Git Introduction In a previous post, we were able to successfully set up a Windows virtual machine using VirtualBox. This left us ready to begin working on data science projects. But, data science, like…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Pictorial Representation of Version Control



Version Control with Git





Introduction



In a previous post, we were able to successfully set up a Windows virtual machine using VirtualBox. This left us ready to begin working on data science projects.



But, data science, like most tech fields, boils down to code and files. And thus, we must consider a number of questions around these, including:




  1. How do we store them?

  2. How do we track changes made?

  3. How can we access them across different machines?

  4. How can we share them with collaborators?



This is where version control comes to save the day.






Version Control / Source Control



Version Control is defined as "the practice of tracking and managing changes to software code". 1 Essentially, it is a mechanism of keeping track of changes made to computer files, particularly source code files, with the ability to view old versions and optionally revert a file to a preferred previous version.



It has been around in some form for as along as humans have worked with computers, with early attempts having collaborators managing sharing of computer files and projects, through means such as pendrives, emails and shared folders. Most approaches were clunky, with no built-in way of detecting who made what changes to what files and folders when. This resulted in teams coming up with strange conventions e.g. folders being named project, project1, project-latest etc. Also, errors such as accidental overwrites were quite common with users commonly having the work lost when others working on the same files and folders posted their work to the common storage area after them.



Ultimately, all these problems led to the rise of Version Control Systems (VCS). These are software tools used mostly in, but not limited to, software development and collaborative projects to automatically track and manage changes to source code files.



Benefits of such systems include:




  • Automated functionality to record and track every update to code base.

  • Collaborate with others without fear of accidentally permanent overwrites.

  • Easy reversion to previous versions of specific files and folders (or the project as a whole).

  • Ingrained, structured history which simplifies auditing of the project's progression.



There exist a number of popular VCS tools used by individuals, teams and enterprises, including Mercurial, Subversion, Fossil and CVS. The most popular one, however, and both the focus of this article and tool in use at LuxDevHQ, is Git.



Git



Git is a lightning-fast, free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. 2



It was originally developed by Linus Torvalds - the creator of Linux - as version control for the development of the Linux Kernel. It has since grown to become used by over 93% of developers worldwide. It is compatible with and installable on most conventional operating systems as well as on technologies such as Docker.



Installation



To install on one's machine, head on over to the Install for guidance on the specific OS.



For Windows Users



Visit here and download the latest version of Git for Windows which includes a command line interface (CLI) within which one can run Git commands (known as Git Bash).



Git Install for Windows



Git Install for Windows


Upon completion of the download, double click on the file to trigger installation. Click Yes when prompted for User Account Control (UAC) permission. This will open the Git Setup Wizard.



Most of the default configurations should suffice so you can consistently click "Next" throughout the process. (Should you encounter a configuration that you wish to change, kindly feel free to change it.) Once done, the installation will run for a few seconds. Upon completion, check the Launch Git Bash option, uncheck View Release Notes then click Finish. It should open a window similar to the one below.



Git Bash Window



Git Bash


Setup



With Git installed, we can now jump into setting up.



First off, there needs to be a global user configured to use Git (this can be overridden within individual repositories). To do this, run the following commands:





  • User's name
    git config --global user.name "<Your Name>"

  • **User's email address"
    git config --global user.email "<your.email@emaildomain>"



NB: Replace <Your Name> and <your.email@emaildomain> with actual name and email address, respectively.



Once done, run git config --list to confirm the configurations have applied correctly.



Repository Setup



Now, let's cross over to creating and configuring a Git repository. A repository is a central location in which data is stored and managed. Within the context of a software project, it can be thought of as the root folder containing the source file and code.



First, we shall a create our project folder





  1. Create a folder within the CLI

    mkdir -p test-project



    NB: -p instructs the CLI to create any intermediate parent folder that may be missing.



  2. Navigate into the new folder

    cd test-project


  3. Create a sample README

    touch README.md



  4. Populate the README with some informative message

    echo "This is a test project showing how to set up a Git repository" >> README.md



    NB: You can confirm that the content has been written into the README file using the following command

    cat README.md




  5. Being a data science project, let's create a test a sample Python that simply prints greetings to the CLI

    touch test.py && echo "print('Hello, World')" >> test.py



    NB: You can combine multiple commands using the && operator




  6. Let's now list the content of the current folder (i.e test-project) to confirm that all our files are in place

    ls .



    If you see both of our newly created files (i.e README.md and test.py), then you are good to continue.



    NB: . in the command ls . represents our current working folder.





NB: You can find a cheat sheet of common Linux commands that can run in the CLI here.



Now, let's configure our folder into a git repository




  1. Initialize Git in the folder
    git init

  2. Stage the created files in preparation for committing
    git add .


  3. Commit the new files with an optional message
    git commit -m "Initial Commit"



The repository is now ready to be delivered to an online Git repository service.









  1. Atlassian. (2026, Jan 16). What is version control: Atlassian Git Tutorial https://www.atlassian.com/git/tutorials/what-is-version-control ↩





  2. Git. (2026, Jan 18). Git https://git-scm.com ↩




CTI Threat Relationship Graph4 Knoten / 3 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Remote Code Execution (RCE) Defense
Syntax validiert (0 Fehler)
title: Detect Exploitation - My Journey at LuxDevHQ: Version Control (The Basics)
id: 60a6f959-6c35-40b5-9fe4-9b5ef7f16ff5
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "My Journey at LuxDevHQ: Versio" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("My Journey at LuxDevHQ Version Control T")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*My Journey at LuxDevHQ Version Control T*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "My Journey at LuxDevHQ Version Control T"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc
🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich My Journey at LuxDevHQ: Version Control .... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten My Journey at LuxDevHQ: Version Control (The Basics)

Thematisch verwandte Begriffe: Journey, LuxDevHQ, Version, Control · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-61823 | code16 Sharp is a Laravel-based framework for building content-managemen…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...
↗ Original-Quelle