Git & GitHub Ch.1

chezze·2023년 3월 27일
0

Git & GitHub

목록 보기
1/2
post-thumbnail

The Basics of Git

What is Git

Git is an open source project developed in 2005 by Linus Torvalds,
the creator of the Linux operating system kernel.

Three features Git offers

  • Version Control

  • Backup

  • Collaboration

Types of Git Programs

  • GitHub Desktop
    Git program implemented with GUI provided by GitHub

  • TortoiseGit
    Windows-only git program

  • SourceTree
    Typical tool in Git GUI

  • Command Line Interface (CLI)
    Using Git by typing a command directly into a terminal

Installing git

※ Before proceeding with the git installation, the author reveals that
   it was conducted based on Ubuntu Linux.

You can install git and check the version using the following command.

sudo apt-get install git
sudo apt install git
git --version

Environment setting for Git

When saving a version, git also stores the user information that created that version.
So you must enter the user information before using git.

User information can be entered through the following command.

git config --global user.name "User_Name"
git config --global user.email "User_Email"

profile
주니어 컴공학부생🌱

0개의 댓글