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 1 year has passed since last update.

Gitコマンド

Last updated at Posted at 2022-01-23

1,git init  //ローカルリポジトリを作成

2,git add .  //ステージに追加

3,git commit -m  //ステージからローカルリポジトリへコミット

4,git remote app origin https://github.com/~
       //リモートリポジトリ新規追加

5,git push リモート名 ブランチ名
 git push origin master 
  git push -u origin master

【コード一覧】
git init(初期化)

git clone アドレス //リモリポからコピー

git add ファイル名 //変更選択

git commit -m "メッセージ" //コミット

git remote add Rリポ名 URL //Rリポ登録

git push Rリポ名 master //プッシュ

git pull Rリポ名 master //プル

【確認】
git status  //変更ファイル確認
git diff  //ワークツリーとステージ間の変更確認
git log   //コミット記録確認
git log –oneline  //一行で表示する
git log -p index.html   //ファイルの変更差分を表示
git log -n 5   //表示コミット数を制限
git log -p     //変更内容全確認
git rm ファイル  //ファイルの完全削除
git rm -r ディレクトリ  //ディレクトリ完全削除
git rm –cached ファイル名  //ローカルリポジトリ内のみ削除

【移動】
git mv 旧ファイル名 新ファイル名

0
0
0

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?