GitHub の超初心者です。下記のようにセットアップ方法があるのですが、1の方法だと
https://github.com/ユーザーネーム/lab-3-2.gitのURLにアクセスしてGitHub上にある利用するファイルをimportすれば良いだけのことでしょうか?自分のローカルで作業できるように設定したいです。
2以降のコマンドがよくわからず、1の方法で手動でインポートすることもできるという意味でしょうか?
1、Quick setup — if you’ve done this kind of thing before
or
https://github.com/ユーザーネーム/lab-3-2.git
Get started by creating a new file or uploading an existing file. We recommend every repository include a README, LICENSE, and .gitignore.
2、…or create a new repository on the command line
echo "# lab-3-2" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/ユーザーネーム/lab-3-2.git
git push -u origin master
3、…or push an existing repository from the command line
git remote add origin https://github.com/ユーザーネーム/lab-3-2.git
git branch -M master
git push -u origin master
4、…or import code from another repository
You can initialize this repository with code from a Subversion, Mercurial, or TFS project.
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/30 02:20
退会済みユーザー
2020/09/30 02:42
2020/09/30 02:48