1
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.

リモートレポジトリからSagemakerへpullできない(管理コンソールで操作)

Last updated at Posted at 2022-12-17

Qiita記事と公式チュートリアルを参考にやったけど失敗。
CLIを使えない自分は管理コンソールで操作するしかなく
そもそもどこにpull、pushボタンがあるかを見つけるまで数日かかってしまった。。。

当たり前のこと過ぎるが、自分のような初心者はそんなこと知らないし
親切に教えてくれる人もいないので、同じ境遇の人の役に立てば幸いです。

TL ; DR

以下で数日間悩みました

  1. 管理コンソールでpull、pushボタンの場所がわからない
    ⇒雲マークの所にある
  2. pull、pushしようとするとエラーが出る
    ⇒git config pull.rebase falseで解決

1. pull、pushボタンの場所がわからない

公式チュートリアルはCLIでのpull、push方法しか載ってなくて
ボタンを探すまで数日悩みました(情けない)。。。

image.png
やっとボタン場所がわかりpullしようとすると今度はエラーが。。。
ぐぬぬ・・・

2. pull、pushしようとするとエラー

初心者には読む気も失せるエラーがこちら

Git Pull failed with error: 
hint: You have divergent branches and need to specify how to reconcile them. hint: You can do so by running one of the following commands sometime before hint: your next pull: hint: hint: git config pull.rebase false # merge hint: git config pull.rebase true # rebase hint: git config pull.ff only # fast-forward only hint: hint: You can replace "git config" with "git config --global" to set a default hint: preference for all repositories. You can also pass --rebase, --no-rebase, hint: or --ff-only on the command line to override the configured default per hint: invocation. fatal: Need to specify how to reconcile divergent branches.

すごく助かる参考記事のお陰であっさり解決。
ターミナルでこのコードを打つだけです。

$ git config pull.rebase false

ちなみにターミナルをどこから開くかにも一苦労しました。。。
当たり前過ぎる事はネットで出てこなかったりする。。。
image.png

つまらない事で数日間悩みましたがやっとpullできました!
image.png

3.最後に(Changed→Staged→Commitって何?)

この流れすら私には???で悩みました。。。
まずファイル変更すると、その変更がChangedステージ?に移るので+(プラス)を押す
image.png
次はStagedステージ?に移ります
image.png
サマリーを何でもいいので書いてCommit押す
image.png
最後にpushします
image.png
無事pushされました
image.png

参考

SageMakerとGitHubのプライベートリポジトリを連携させる
【GitHub】基本の使い方!初心者がPushするまで
git pull したときに出たエラーの対処法

1
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
1
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?