Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gitとGitHubについての記事 #26

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open

gitとGitHubについての記事 #26

wants to merge 10 commits into from

Conversation

yuorei
Copy link
Contributor

@yuorei yuorei commented Jun 10, 2023

git GitHubについて書きました。一旦の完成です。
まだ追加するかもしれないです。

@yuorei yuorei self-assigned this Jun 10, 2023
@kashu-02 kashu-02 requested review from Kai-Z-JP and eraser5th June 10, 2023 12:48
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Jun 17, 2023

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: c0c7c2e
Status: ✅  Deploy successful!
Preview URL: https://ddc17ec6.zli-blog.pages.dev
Branch Preview URL: https://write-git-github.zli-blog.pages.dev

View logs


こんにちは!
Zliの[ユオレイ](https://yuorei.github.io/)です。
今回はgit,GitHubについて解説していきます。この記事を読めばgit,GitHubを最低限は使えるようになると思います。ぜひ参考にしてみてください。
Copy link

@Kai-Z-JP Kai-Z-JP Jun 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
今回はgit,GitHubについて解説していきます。この記事を読めばgit,GitHubを最低限は使えるようになると思います。ぜひ参考にしてみてください。
今回はgit, GitHubについて解説していきます。この記事を読めばgit, GitHubを最低限は使えるようになると思います。ぜひ参考にしてみてください。


gitとは、小規模なプロジェクトから非常に大規模なプロジェクトまで、あらゆるプロジェクトを迅速かつ効率的に処理できるように設計された、 無料のオープンソースの分散バージョン管理システムです。gitを使うことでソースコードの管理が非常に快適になります。
gitは、プログラムのソースコードなどの変更履歴を記録できて、過去の履歴を参照してその時の状態に戻すことができます。
共同作業をするときは、branchをきって作業できるのでmainのbranchには影響をあたえずに作業できます。
Copy link

@Kai-Z-JP Kai-Z-JP Jun 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
共同作業をするときは、branchをきって作業できるのでmainのbranchには影響をあたえずに作業できます
共同作業をするときは、別にブランチを切って作業できるのでmainのブランチへ影響を与えずに作業することができます
  • mainでない可能性
  • ブランチで良いのでは

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

HEAD...?

git -v
```

これでバージョンが出てきていればすでにダウンロード済みなのでここは飛ばしてください。

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ここは飛ばしてください。ここが指し示すことが不明瞭


https://git-scm.com/downloads

ダウンロードが終わったら先ほどのコマンドを実行してバージョンが出たらダウンロード完了です。

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ダウンロードしただけでインストールはされません。

Comment on lines 45 to 46
git config --global user.name "yuorei"
git config --global user.email "[email protected]"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

適宜変更してくださいならuser.nameもexampleで良いのでは

mkdir git-practice && cd git-practice
```

`git init`を使うことで作成ができます。もしもともと存在していた場合は再度作り直されます。`.git`のあるディレクトリで作業をします。

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
`git init`を使うことで作成ができます。もしもともと存在していた場合は再度作り直されます`.git`のあるディレクトリで作業をします。
`git init`を使うことで作成ができます。もし、リポジトリがもともと存在していた場合は再度作り直されます`.git`のあるディレクトリで作業をします。

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

作り直されると言うより初期化...?

git init
```

`.git`があるかを確認するには`ls -a`で確認してみてください。これがGitリポジトリです。現在は空にGitリポジトリです。

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

文章の意味がわかりません。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants