🙃

ターミナル git 使い方集

2022/10/13に公開

現在

"commitを英語で書く"
git init
git add .
git commit -m "first commit"
git branch -M master
git remote add origin ???
git push origin master

git initをしないと全てコピーされるな
Urlを変更したい場合は
git remote set-url origin [変更先のURL]

git で増えるもの vscodeの非表示設定
https://qiita.com/unsoluble_sugar/items/e539b6cc5c9cd7a1f32e

commit名を変更したい
git commit --amend

-M の意味
上書きをして作成する
main //初期のbranch
git branch -M master
master //masterのみになる

https://stackoverflow.com/questions/27938850/git-rm-what-is-the-meaning-of-rfv

Git Pull

https://forest-valley17.hatenablog.com/entry/2018/12/06/223807
https://www-creators.com/archives/1097

複数作業

branch更新
git pull origin branch名
で更新できる

何かをすでに変更してコミットするものがある場合はストッパーが入り失敗する

初期の頃の記事(見直すために)

cd がうまく機能しない時は階層の問題の時が多い。../で階層を1段階挙げられる
ディレクトリーとも言う

ls でリスト

ユーザ名
以下のコマンドを入力してください。
git config --global user.name 任意のユーザ名
メールアドレス
以下のコマンドを入力してください。
git config --global user.email 任意のメールアドレス
最後に以下のコマンドを入力すると、上記のユーザ名とメールアドレスが登録されていることを確認できます。

$ git config --list

https://atmarkit.itmedia.co.jp/ait/articles/1701/24/news141_3.html
なんでhello-git-9
なのか>>>hello-git-9が大事なのではなく
作るlocalディレクトリが大事らしい

localディレクトリがないとgitが使えない(嘘かも
ssh ではなく httpsじゃないと動かなかったなんでだろう?

git
remote add origin https://github.com/なまえ/flutter_test.git

git remote rm
でさ駆除

git initで.gitを追加
git add ?????
git commit -m "ここにコメント"
git remote add origin ここがsshじゃだめだった
git push origin master

この流れ

できたーーーーーーーー

/Users/なまえ/StudioProjects/.git
/Users/namae
/StudioProjects/flutter_untitle
一応パス

https://qiita.com/kazu56/items/cf1ad99893ae4f172a7d

https://atmarkit.itmedia.co.jp/ait/articles/1701/24/news141_2.html

Discussion