Githubを「最強Todo管理ツール」にしてみた!
GithubでTodo管理
参考:
①まずforkする。
②privateの空リポジトリを作っておく。
③forkしたリポジトリをローカル環境にcloneして、②の空リポジトリにmirrorをpushする。
※エラーがでた。
git push error
git push --mirror [email protected]:[username]/todos
Warning: Permanently added the ECDSA host key for IP address '13.114.40.48' to the >list of known hosts.
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.Please make sure you have the correct access rights
and the repository exists.
git push error 2
ssh-keygen -R 13.144.40.48
Host 13.144.40.48 not found in /root/.ssh/known_hosts
git push --mirror [email protected]:[username]/todos
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.Please make sure you have the correct access rights
and the repository exists.
どうやらpublic keyの問題のようなので、keyを登録。
下記を参考に解決。
※再度push!。。。エラー。。。
ローカルでこのコマンドを実行してoriginを①の空リポジトリ名に合わせる。
git remote set-url origin github:【ユーザー名】/【リポジトリ名】.git
④完了!!
todo管理できるようになった!!便利!!
- projectを作成
- Issuesにtodoを登録
- カンバン形式で管理できる。
⑤後処理
残骸消す。
・forkしたリポジトリ
・cloneしたローカルのorigin
Author And Source
この問題について(Githubを「最強Todo管理ツール」にしてみた!), 我々は、より多くの情報をここで見つけました https://zenn.dev/gk12/articles/4dc5f6335d9ed2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol