yurino-sakamoto / portfolio

0 stars 0 forks source link

【DevOps】git github #10

Open yurino-sakamoto opened 4 years ago

yurino-sakamoto commented 4 years ago

git→バージョン管理システム github→gitを利用したサービス

yurino-sakamoto commented 4 years ago

【04/02】 git環境構築

<内容>
①リモートリポジトリでディレクトリを作る
②管理したいフォルダ内で操作をおこなう
③リモートリポジトリとローカルリポジトリを関連させる
④ブランチ作成
⑤各種設定
 ・ブランチ保護設定
 ・コラボレータの設定

<必要があればすること>
・CircleCIの設定
・git clone
・プルリクのテンプレ作成
・SSHKey(初めてアカウントを作る場合)
・ブランチ自動削除設定
 nodeバージョン変更

①リモートリポジトリでディレクトリを作る

スクリーンショット 2020-04-24 20 01 40 スクリーンショット 2020-04-24 20 03 15

②管理したいフォルダ内で操作をおこなう

1.管理したいフォルダに移動 2.管理したいフォルダに初期設定をおこなう

1. $ git init

git init を押すと、.git などのフォルダが作成される

③リモートリポジトリとローカルリポジトリを関連させる

1. $ git add -A
2. $ git commit -m "メッセージを入れる"
3. $ git remoto origin
4. $ git push origin 

④ブランチ作成

git checkout-b ブランチ名

*リモートとローカルのフォルダ内容は同じであるため、そのままブランチを切って大丈夫

⑤各種設定

 ・ブランチ保護設定  ・コラボレータの設定

yurino-sakamoto commented 4 years ago

用語まとめ

追跡対象 バージョン管理の対象としてGitに登録してあるファイルのこと

git clone ssh httpの違い https://qiita.com/chroju/items/67da13c672efcd2bc787

yurino-sakamoto commented 4 years ago

コマンドまとめ

gitで特定ファイルを特定のcommitに戻す - Qiita https://qiita.com/ritukiii/items/5bc8f74dbf4dc5d1384c

git status ワーキング・ツリーの状態を表示する(ワーキング・ツリー→現在作業中のディレクトリ) https://eng-entrance.com/git-status

git stash 変更を一時的に退避しておくことのできる https://qiita.com/fukajun/items/41288806e4733cb9c342

git stash git stash pop git reset HEAD git marge develop git pull git log --oneline

yurino-sakamoto commented 4 years ago

エラー集 https://blog.labot.jp/entry/2019/07/01/183204

yurino-sakamoto commented 4 years ago

gitの理解

git を始めてプルリクを出すまで https://employment.en-japan.com/engineerhub/entry/2017/01/31/110000

https://www.sejuku.net/blog/71003 https://kitsune.blog/git-command#pull(プル)とは

yurino-sakamoto commented 4 years ago

操作方法関連

マークアップ https://web-generalist.com/github-comment-markdown/

yurino-sakamoto commented 4 years ago

gitの管理下から外す

① .gitignoreを使用 https://qiita.com/anqooqie/items/110957797b3d5280c44f https://qiita.com/inabe49/items/16ee3d9d1ce68daa9fff(書き方

②すでにコミットされているものは下記記事参考 https://qiita.com/megu_ma/items/a438a71c84145f14d04e