Git Basics: Essential Commands for Beginners
After installing Git, here are some initialization commands and common operations to get you started.
Create a new directory, navigate into it, right-click, and select "Git Bash Here" to access the command line.
1. Configure Username
Set the global username across all repositoires using the --global flag:
git config --global user.name ...
Posted on Mon, 20 Jul 2026 16:19:04 +0000 by AKalair
Setting Up SVN and Git Remote Repositories on CentOS 7.6 Server
Creating System User for Repository Management
Begin by creating a dedicated system account without a home directory:
useradd -M developer_user
The -M flag prevents automatic creation of the /home/developer_user directory.
Establish a password for the new user:
passwd developer_user
Follow the prompts to enter the desired password twice.
Esta ...
Posted on Sun, 19 Jul 2026 16:47:13 +0000 by Ofro04
Understanding Maven and Its Configuration
T04BF
👋 Series: Algorithms | JAVA | MySQL | C Language
🫵 Did you code today? 1. Introduction to Maven
1.1 What is Maven
According to Apache's official definition:
Apache Maven is a software project management and comprehension tool.
Based on the concept of a project object model (POM), Maven can manage
a project’s build, reporting and docume ...
Posted on Tue, 07 Jul 2026 16:21:33 +0000 by ludjer
Configuring YUM Repository Sources
Setting Up YUM Repositories
Online Repository Configuration
Alibaba Cloud Repository
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
yum install epel-release -y
yum clean all
yum makecache
Huawei ...
Posted on Wed, 24 Jun 2026 18:15:48 +0000 by phpmania1
Essential Git Operations
Git Workflow Overview
Files transition through three stages: working directory → staging area → local repository → remote repository.
Installation
$ sudo yum install -y git
$ git --version
git version 2.34.1
Repository Initialization
$ mkdir project
$ cd project
$ git init
Initialized empty Git repository in /home/user/project/.git/
$ ls -a
.g ...
Posted on Sat, 16 May 2026 03:58:09 +0000 by gassaz
Configuring YUM Repositories and NFS Shared Storage on Linux
Configuring Local and Remote YUM Repositories
Setting Up a Local Repository Using File Access
Create a repository definition file pointing to a ISO mount point:
cd /etc/yum.repos.d/
cat > local-repo.repo <<EOF
[local-repo]
name=Local Repository
baseurl=file:///iso_mount
enabled=1
gpgcheck=0
EOF
mkdir -p /iso_mount
mount /dev/cdrom /is ...
Posted on Wed, 13 May 2026 12:57:35 +0000 by Helljumper
Git Setup, Version Control Fundamentals, and Commit Best Practices
Getting Started with Git Installation
Installing on Linux
For Linux distributions, installing Git through the native package manager is straightforward.
On Red Hat-based systems:
sudo yum install git
On Debian-based systems:
sudo apt install git
Installing on Windows
Download the appropriate installer from the official Git website matching yo ...
Posted on Sat, 09 May 2026 09:02:55 +0000 by Fritz.fx