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.

Gitコマンドメモ

Last updated at Posted at 2021-05-15

コミット手順

``` git init ```
git add .
git commit -m "どういうコミットか説明する任意のメッセージ"
git remote add origin Githubに事前に作成したリポジトリのURL
git push origin HEAD

最初にplease tell me who you areエラーが出た場合

git config --global user.email 自身のメールアドレス
git config --global user.name 自身の名前

ローカルリポジトリでのソースコード編集をリセット

git checkout .

ローカルリポジトリでのファイル追加ごとリセット

git clean -df .

コミット履歴の確認

2週間前まで表示する例
git log --since=2.weeks

ブランチ関連

ブランチ作成
git branch {ブランチ名}

ブランチ移動

git checkout {ブランチ名}
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?