Git - Client Installation

Software

Linux

yum install git

Windows

Git for windows provides a bash and a gui.

It provides also all GNU core utility

Configuration

Git - Config

Identity

git config --global user.name "Gerardnico"
git config --global user.email [email protected]

where:

  • the global option tells Git to store the parameters on a global scope
  • Verify the identity parameters by querying them
git config --global --get-regexp user
user.name Gerardnico
user.email [email protected]

Windows

:: Long path handling
git config --global core.longpaths true
:: No Windows EOL
git config --global core.autocrlf false

Editor

  • Set the editor
git config --global core.editor emacs

My latptop:

git config --global core.editor edgit.bat

Credentials

Store your credential

  • in memory for a few minutes
git config --global credential.helper cache
git config --global credential.helper wincred

Alias

And optionally setup a few helpful aliases:

git config --global alias.st status
git config --global alias.ci commit
git config --global alias.up pull --rebase

You can now use the following command:

# Status
git st
# Commit
git ci
# Pull --rebase
git up

Rebase

Automatic rebase

git config branch.autosetuprebase local

Documentation / Reference





Discover More
Git - Server Installation

See or
Kafka Commit Log Messaging Process
Kafka Connect - Sqlite in Distributed Mode

Sqlite JDBC source connector demo. The same steps than in the article but with a distributed worker Install Docker: Install Git: If you want to make the call with the kafka console utilities...
Openssl

openssl is a command line tool that: * permits testing, managing, and seeing what happens in a TLS world (ie new name for SSL) * can act as a network client/server * Obtain a valid Certificate...
Card Puncher Data Processing
Shell Data Processing - (GNU Core) Utilities - XCU

The GNU Core Utilities are the basic file, shell and text manipulation utilities of the GNU operating system. Most of them are filter utility The acronym XCU derives...



Share this page:
Follow us:
Task Runner