Comprehensive Guide to Git and GitHub Workflows
Core Concepts
Working Directory: The directory you see on your file system.
Staging Area (Index): Stored in the .git/index file within the working directory.
Repository (Local Repo): Stored in the .git directory.
HEAD:
A pointer to the current local branch.
Can point to a branch or a specific commit.
Defines which branch is associated with th ...
Posted on Fri, 31 Jul 2026 16:10:52 +0000 by koddos
Complete Guide to GitLab Setup and Usage: Groups, Users, Projects, and Permissions
Installing and Using GitLab
To initiate a new repository, choose 'Create a new repository' to start with an empty one, then proceed to develop and commit code.
Alternatively, use 'Push an existing folder' when you already have source code ready to upload.
Cloning and Committing Files
After cloning the repository, create files within it and comm ...
Posted on Thu, 25 Jun 2026 17:08:41 +0000 by morphboy23