2
3

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.

SourceTree で Azure DevOps に繋ぐ方法 2021/10/18

Last updated at Posted at 2021-10-18

背景

以下で記述はされているんですが、今はもう少し楽になっているので備忘録
※いつからかは不明。去年も楽にできた記憶。

環境

  • SourceTree 3.4.6

    image.png

方法

Azure DevOpsから必要な情報の取得

Windows + V でクリップボード履歴を有効化しておくと(Windows10 以降)
VS-Code とかへのペースト作業がなくなるので便利

  1. ホストURL取得
    アドレスバーからURLをコピー
    image.png

  2. Username と Password(PAT: Personal Access Token) の取得
    下図のようにして、Credentialsを生成して取得
    image.png

既存の PAT は以下から設定変更可能

編集メニュー

image.png

編集画面:削除や無効化、権限の詳細設定(Edit)とか

image.png

SourceTree での設定

  1. アカウント追加
    1. アカウントを追加
    2. ホストURLを貼り付け
    3. Username を貼り付け
    4. Password を貼り付け
    5. 認証させて完了
      image.png
  2. アカウントに紐づいたリポジトリが表示されるのでクローンするだけ
    image.png

URLとして正しくありません、と出た場合以下を試してみると改善されるかも

プロキシーの設定

実際のエラー
image.png
対処法

image.png

ターミナルでの設定・確認例:たぶんこっちは不要

Proxy設定例
git config --global https.proxy 123.456.789.000:1234
Proxy確認例
git config --global -l

参考

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?