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.

2020/06/11 勉強 GitHub

Last updated at Posted at 2020-06-11

#Docker

#GitHub
 ■コマンドラインでGitを使用する

・Gitをインストール
   http://git-scm.com/
   参考サイト:https://qiita.com/taiponrock/items/632c117220e57d555099
  
  ・Gitコマンド
   ・Gitのバージョン確認
     ・Git --version
   ・ローカルにクローンを作成(SVNではCheckOut)
     ・git clone リポジトリパス
     例)git clone git@github.com:aa/bb.git
       aa:リポジトリ名 bb:ディレクトリ名
   ・SSH公開鍵作成
     ・ssh-keygen -t rsa -b 4096 -f .ssh/[filename]
     ・passphraseはなんでもOK(5文字以上)
     参考サイト:https://qiita.com/coffee_g9/items/e1b9ab28cfa54f854308

   ・ブランチ確認
     ・git branch  (ローカル)
     ・git branch -r (サーバー)
   ・ブランチ作成
     ・git branch aaa
   ・ブランチに移動
     ・git checkout aaa
   ・ブランチ削除
     ・git branch -d aaa
   ・変更ファイル一覧
     ・git diff --name-status(or only) 
   ・コミット
     ・git commit       
   ・コミット時、VIが起動する
     ・抜けるときESCボタンを押下後、:wqでVIを抜ける
   ・origin:ベースのブランチ
   ・追加・変更ファイルのコミット(全体のコミットの前に追加ファイルの編集を確定)
     ・git add aaa
   ・一括コミット
     ・git add .
   ・ブランチの状態確認
     ・git status
   ・サーバーに反映
     (新規)
     ・git push --set-upstream origin develop
     (修正)
     ・git push
   ・最新取得
     ・git pull
   ・変更を元に戻す
     ・git checkout .
   ・特定のファイルを元に戻す
     ・git checkout aaa
   ・ブランチのマージ
     ・マージするブランチに移動
       ・git checkout aaa
     ・aaaブランチにbbbをマージ
       ・git merge bbb

#PHP(Laravel)
   ・ログ出力
    Log::debug("aaa");
    参考サイト:https://laraweb.net/practice/4298/

0
0
1

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?