private knowhow
修訂 | 9b059c54eaab0a6093186232b2517abd7c9e756d (tree) |
---|---|
時間 | 2021-05-09 07:01:17 |
作者 | hyperoga <hyperoga@gmai...> |
Commiter | hyperoga |
add trouble shoot
@@ -54,8 +54,22 @@ git | ||
54 | 54 | $ git push -u origin master (ローカルリポジトリ(master)をリモートリポジトリ(origin)にpushする) |
55 | 55 | |
56 | 56 | |
57 | +トラブルシュート | |
58 | +80. cloneしたファイルを修正してcommit, pushするとhttp 403エラー | |
59 | + fatal: unable to access 'http://pf.osdn.jp/gitroot/x/xx/xxxx/xxxtool.git/': The requested URL returned error: 403 | |
60 | +(1)アカウント設定 | |
61 | + git config --global user.name "<ユーザー名>" | |
62 | + git config --global user.email <メールアドレス> | |
63 | +(2)エラーとなっているURLにユーザ名を付加する | |
64 | + OSDNの場合 | |
65 | + git remote set-url origin https://<ユーザ名>@pf.osdn.jp/gitroot/xxxx/xxxx.git | |
66 | + githubの場合 | |
67 | + git remote set-url origin https://<ユーザ名>@github.com/<ユーザ名>/<リポジトリ名>.git | |
68 | + | |
69 | + | |
70 | + | |
57 | 71 | { |
58 | -19. 基本コマンド | |
72 | +99. 基本コマンド | |
59 | 73 | init : リポジトリの初期化 |
60 | 74 | clone <url> : リポジトリの複製 (svn co) |
61 | 75 | commit : リポジトリヘのコミット (svn commit) |