• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

private knowhow


Commit MetaInfo

修訂9b059c54eaab0a6093186232b2517abd7c9e756d (tree)
時間2021-05-09 07:01:17
作者hyperoga <hyperoga@gmai...>
Commiterhyperoga

Log Message

add trouble shoot

Change Summary

差異

--- a/git.txt
+++ b/git.txt
@@ -54,8 +54,22 @@ git
5454 $ git push -u origin master (ローカルリポジトリ(master)をリモートリポジトリ(origin)にpushする)
5555
5656
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+
5771 {
58-19. 基本コマンド
72+99. 基本コマンド
5973 init : リポジトリの初期化
6074 clone <url> : リポジトリの複製 (svn co)
6175 commit : リポジトリヘのコミット (svn commit)