GitHub超初心者です。質問自体がもしかしたら意味わからないかもしれません。。。
GitHubにて新しくレポジトリーを作成しました。
ターミナルにて下記のコマンドを書かなくてはいけないのですが、
うまく行きません。
git init
git add .
git commit -m "first commit"
git remote add origin https://github.組織名.edu/[YOUR GT USER NAME HERE]/lab-3-2.git
git push -u origin master
下記のようになってしまうのですが、これは何が原因ですか?
GitHubに新しいレポジトリーを作成したいと思っています。
(base) 名前s-MacBook-Air:~ 名前$ cd/Users/名前/Desktop/6440
-bash: cd/Users/名前/Desktop/6440: No such file or directory
(base) 名前s-MacBook-Air:~ 名前$ git init
Reinitialized existing Git repository in /Users/名前/.git/
(base) 名前s-MacBook-Air:~ 名前$ git add .
warning: could not open directory 'Library/Application Support/MobileSync/': Operation not permitted
warning: could not open directory 'Library/Application Support/CallHistoryTransactions/': Operation not permitted
warning: could not open directory 'Library/Application Support/com.apple.TCC/': Operation not permitted
warning: could not open directory 'Library/Application Support/CallHistoryDB/': Operation not permitted
warning: could not open directory 'Library/IdentityServices/': Operation not permitted
warning: could not open directory 'Library/Messages/': Operation not permitted
warning: could not open directory 'Library/HomeKit/': Operation not permitted
warning: could not open directory 'Library/Mail/': Operation not permitted
warning: could not open directory 'Library/Safari/': Operation not permitted
warning: could not open directory 'Library/Suggestions/': Operation not permitted
warning: could not open directory 'Library/Containers/com.apple.VoiceMemos/': Operation not permitted
warning: could not open directory 'Library/Containers/com.apple.Home/': Operation not permitted
warning: could not open directory 'Library/Containers/com.apple.Safari/': Operation not permitted
warning: could not open directory 'Library/Containers/com.apple.iChat/': Operation not permitted
warning: could not open directory 'Library/Containers/com.apple.mail/': Operation not permitted
warning: could not open directory 'Library/Containers/com.apple.news/': Operation not permitted
warning: could not open directory 'Library/Containers/com.apple.stocks/': Operation not permitted
warning: could not open directory 'Library/PersonalizationPortrait/': Operation not permitted
warning: could not open directory 'Library/Metadata/CoreSpotlight/': Operation not permitted
warning: could not open directory 'Library/Metadata/com.apple.IntelligentSuggestions/': Operation not permitted
warning: could not open directory 'Library/Cookies/': Operation not permitted
warning: could not open directory 'Library/Caches/com.apple.safaridavclient/': Operation not permitted
warning: could not open directory 'Library/Caches/CloudKit/com.apple.Safari/': Operation not permitted
warning: could not open directory 'Library/Caches/com.apple.Safari/': Operation not permitted
下記にやりたいことの手順を書きました。
GitHubアカウントでアプリをセットアップするための手順
1、Cerner SMART on FHIRテンプレートリポジトリに移動します。
リポジトリのコンテンツをzipとしてダウンロードします。(右上隅にある緑色の「コード」ボタンをクリックして、「Zipをダウンロード」を選択します。)
2、zipを独自のディレクトリに抽出します。(例:C:\ 6440 \ lab-3-2l)
⇧この独自のディレクトリに抽出方法がよくわかりません。これは自分のパソコンに6440というファイルを作成しGitHubsからダウンロードしたファイル(lab-3-2l)を入れれば良いのでしょうか?
3、GitHubアカウントに「lab-3-2」という名前のリポジトリを作成し、リポジトリをPublicに設定します。
注:別のリポジトリ名を使用する場合は、以下に示すサンプルURLを適切に調整する必要があります。
4、コマンドラインから、コードを抽出したディレクトリに移動し、次のコマンドを実行します(一般的なGitHubリポジトリの初期化手順を簡略化するために適応されています)。
git init
git add .
git commit -m "first commit"
git remote add origin https://github.組織名.edu/[YOUR USER NAME HERE]/lab-3-2.git
git push -u origin master
5、リポジトリ設定で、[GitHubページ]セクションまでスクロールします。「ソース」で、マスターブランチを選択します。これにより、githubページが有効になり、「https://github.組織名.edu/pages/ [ここにあなたのGTユーザー名] / lab-3-2 /」の形式で上記のGHページのURLが表示されます。
回答1件
あなたの回答
tips
プレビュー