Ubuntu 24.04 バージョン管理システム Git のインストール方法

環境
Ubuntu 24.04

バージョン管理システム Git のインストールと設定方法
1.Git をインストールします。
# apt -y install git

2.空リポジトリ作成

$ mkdir project.git
$ cd project.git
$ git init --bare
$ cd

3. 作業用ディレクトリを作成
$ mkdir work
$ cd work
初期化を行います
$ git init

4.ユーザー名とメールアドレスの設定

$ git config --global user.name "it skill share"
$ git config --global user.email "info@arkgame.com"

5.テストファイルを作成してリポジトリに反映
$ echo testfile > ctm.txt
$ git add ctm.txt
ファイルをコミットする
$ git commit ctm.txt -m “Initial Commit"

$ git push /home/ubuntu/project.git master

確認
$ git ls-files

6.リポジトリに任意の名称を登録

$ git remote add origin /home/ubuntu/project.git
$ git remote -v
$ git remote show origin

7.リポジトリに登録した名称で プッシュする

$ echo testfile > mm.txt
$ git add mm.txt
$ git commit mm.txt -m "New Commit mm.txt"

 

IT

Posted by arkgame