0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

github入門(仮)

Last updated at Posted at 2020-07-26

##githubの環境構築
リポジトリ初期化のメモです

Cloud9コンソールにログインします。

Cloud9でgitのバージョンを確認します。

ユーザ名:~/environment $ git --version
git version 2.14.5
git config --global user.name " "任意のユーザ名"
git config --global user.email "XXXXXXX@gmail.com"

エディターをvimに変更する。

git config --global core.editor 'vim -c "set fenc=utf-8"'

上記コマンドで.git config に設定が書かれる。
以下確認したら qエンターで終了します。

less ~/.gitconfig
[credential]
        helper = !aws codecommit credential-helper $@
        UseHttpPath = true
[core]
        editor = vim -c \"set fenc=utf-8\"
[user]
        name = ユーザ名
        email = XXXXXXXXX@gmail.com
/home/ec2-user/.gitconfig (END) 

練習用ディレクトリを作成

mkdir git_repositories

練習用ディレクトリに移動します

cd git_repositories

チュートリアルディクレトリを作成します

mkdir tutorial

ls エンターでディレクトリ作成済みを確認します
ç
ユーザ名:~/environment/git_repositories $ ls
tutorial


ディレクトリ移動します

cd tutorial/


初期化します

git init
Initialized empty Git repository in /home/ec2-user/environment/git_repositories/tutorial/.git/

以上で完了。
この場合 tutorialフォルダ直下のフォルダファイルが、gitのバージョン管理の対象になります

gitディレクトリ作成を作成を確認リポジトリ作成済みになります
ls -a




0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?