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 submoduleを使うときのコマンドTips

Last updated at Posted at 2021-07-14

この記事は

Androidのプロジェクトでsubmoduleを使う時によくコマンドを忘れるので自分の備忘録として残しています

submoduleのinitができない

原因

2段階認証で引っかかった

Githubの2段階認証(Two-Factor Authentication)とは?

  • パスワードによるログインだけでなく2段階目の認証を追加できるもの

####2段階認証の設定方法

解決方法

Personal access tokens を利用する

  • gitコマンドでの操作をするだけの場合はrepoの項目にチェックをつけて生成すればOK
    • 後から権限変更も可能なので 、とりあえずで作っても可
$ git submodule update --init
Cloning into 'example'...
Username for 'https://github.com': bami-oxaliser
Password for 'https://bami-oxaliser@github.com': ${access tokenの英数字}

submoduleを新しいコミットに更新したい

submoduleの更新手順をよく忘れるのでメモ
よくある git submodule update --initのコマンドはsubmoduleに指定されたコミットの状態にしてくれるものなのでsubmoduleのコミットのを変更したいのとはまた別のお話

$ cd 更新したいサブモジュールディレクトリパス
$ git checkout ブランチ名            // 変更したいブランチ(コミット)にする
$ git pull                        // ブランチを最新の状態に更新
$ cd ../
$ git submodule status            // 更新されたか確認
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?