-
Notifications
You must be signed in to change notification settings - Fork 1
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
base: master
Are you sure you want to change the base?
Conversation
Deploying with Cloudflare Pages
|
public/articles/git_github/index.md
Outdated
|
||
こんにちは! | ||
Zliの[ユオレイ](https://yuorei.github.io/)です。 | ||
今回はgit,GitHubについて解説していきます。この記事を読めばgit,GitHubを最低限は使えるようになると思います。ぜひ参考にしてみてください。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
今回はgit,GitHubについて解説していきます。この記事を読めばgit,GitHubを最低限は使えるようになると思います。ぜひ参考にしてみてください。 | |
今回はgit, GitHubについて解説していきます。この記事を読めばgit, GitHubを最低限は使えるようになると思います。ぜひ参考にしてみてください。 |
public/articles/git_github/index.md
Outdated
|
||
gitとは、小規模なプロジェクトから非常に大規模なプロジェクトまで、あらゆるプロジェクトを迅速かつ効率的に処理できるように設計された、 無料のオープンソースの分散バージョン管理システムです。gitを使うことでソースコードの管理が非常に快適になります。 | ||
gitは、プログラムのソースコードなどの変更履歴を記録できて、過去の履歴を参照してその時の状態に戻すことができます。 | ||
共同作業をするときは、branchをきって作業できるのでmainのbranchには影響をあたえずに作業できます。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
共同作業をするときは、branchをきって作業できるのでmainのbranchには影響をあたえずに作業できます。 | |
共同作業をするときは、別にブランチを切って作業できるのでmainのブランチへ影響を与えずに作業することができます。 |
- mainでない可能性
- ブランチで良いのでは
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HEAD...?
public/articles/git_github/index.md
Outdated
git -v | ||
``` | ||
|
||
これでバージョンが出てきていればすでにダウンロード済みなのでここは飛ばしてください。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここは飛ばしてください。
のここ
が指し示すことが不明瞭
public/articles/git_github/index.md
Outdated
|
||
https://git-scm.com/downloads | ||
|
||
ダウンロードが終わったら先ほどのコマンドを実行してバージョンが出たらダウンロード完了です。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ダウンロードしただけでインストールはされません。
public/articles/git_github/index.md
Outdated
git config --global user.name "yuorei" | ||
git config --global user.email "[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
適宜変更してくださいならuser.name
もexampleで良いのでは
public/articles/git_github/index.md
Outdated
mkdir git-practice && cd git-practice | ||
``` | ||
|
||
`git init`を使うことで作成ができます。もしもともと存在していた場合は再度作り直されます。`.git`のあるディレクトリで作業をします。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`git init`を使うことで作成ができます。もしもともと存在していた場合は再度作り直されます。`.git`のあるディレクトリで作業をします。 | |
`git init`を使うことで作成ができます。もし、リポジトリがもともと存在していた場合は再度作り直されます。`.git`のあるディレクトリで作業をします。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
作り直されると言うより初期化...?
public/articles/git_github/index.md
Outdated
git init | ||
``` | ||
|
||
`.git`があるかを確認するには`ls -a`で確認してみてください。これがGitリポジトリです。現在は空にGitリポジトリです。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
文章の意味がわかりません。
git GitHubについて書きました。一旦の完成です。
まだ追加するかもしれないです。