質問編集履歴

7

内容の変更

2020/09/19 20:56

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -130,7 +130,7 @@
130
130
 
131
131
  git commit -m "first commit"
132
132
 
133
- git remote add origin https://github.組織名.edu/[YOUR GT USER NAME HERE]/lab-3-2.git
133
+ git remote add origin https://github.組織名.edu/[YOUR USER NAME HERE]/lab-3-2.git
134
134
 
135
135
  git push -u origin master
136
136
 

6

内容の変更

2020/09/19 20:55

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -130,7 +130,7 @@
130
130
 
131
131
  git commit -m "first commit"
132
132
 
133
- git remote add origin https://github.gatech.edu/[YOUR GT USER NAME HERE]/lab-3-2.git
133
+ git remote add origin https://github.組織名.edu/[YOUR GT USER NAME HERE]/lab-3-2.git
134
134
 
135
135
  git push -u origin master
136
136
 

5

内容変更

2020/09/19 20:55

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -126,13 +126,13 @@
126
126
 
127
127
  git init
128
128
 
129
- git add
129
+ git add .
130
130
 
131
- git commit -m "最初のコミット"
131
+ git commit -m "first commit"
132
132
 
133
- git remote add origin https://github.組織名.edu/ [ここにあなたのユーザー名] /lab-3-2.git
133
+ git remote add origin https://github.gatech.edu/[YOUR GT USER NAME HERE]/lab-3-2.git
134
134
 
135
- git push -u originマスター
135
+ git push -u origin master
136
136
 
137
137
 
138
138
 

4

タイトル変更

2020/09/19 20:54

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- GitHub について
1
+ GitHubアカウントでアプリをセットアップするための手順について
test CHANGED
File without changes

3

内容の修正

2020/09/19 20:49

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -89,3 +89,51 @@
89
89
  warning: could not open directory 'Library/Caches/CloudKit/com.apple.Safari/': Operation not permitted
90
90
 
91
91
  warning: could not open directory 'Library/Caches/com.apple.Safari/': Operation not permitted
92
+
93
+
94
+
95
+
96
+
97
+ 下記にやりたいことの手順を書きました。
98
+
99
+
100
+
101
+ GitHubアカウントでアプリをセットアップするための手順
102
+
103
+
104
+
105
+ 1、Cerner SMART on FHIRテンプレートリポジトリに移動します。
106
+
107
+ リポジトリのコンテンツをzipとしてダウンロードします。(右上隅にある緑色の「コード」ボタンをクリックして、「Zipをダウンロード」を選択します。)
108
+
109
+
110
+
111
+ 2、zipを独自のディレクトリに抽出します。(例:C:\ 6440 \ lab-3-2l)
112
+
113
+ ### ⇧**この独自のディレクトリに抽出方法がよくわかりません。これは自分のパソコンに6440というファイルを作成しGitHubsからダウンロードしたファイル(lab-3-2l)を入れれば良いのでしょうか?**
114
+
115
+
116
+
117
+ 3、GitHubアカウントに「lab-3-2」という名前のリポジトリを作成し、リポジトリをPublicに設定します。
118
+
119
+
120
+
121
+ 注:別のリポジトリ名を使用する場合は、以下に示すサンプルURLを適切に調整する必要があります。
122
+
123
+
124
+
125
+ 4、コマンドラインから、コードを抽出したディレクトリに移動し、次のコマンドを実行します(一般的なGitHubリポジトリの初期化手順を簡略化するために適応されています)。
126
+
127
+ git init
128
+
129
+ git add。
130
+
131
+ git commit -m "最初のコミット"
132
+
133
+ git remote add origin https://github.組織名.edu/ [ここにあなたのユーザー名] /lab-3-2.git
134
+
135
+ git push -u originマスター
136
+
137
+
138
+
139
+ 5、リポジトリ設定で、[GitHubページ]セクションまでスクロールします。「ソース」で、マスターブランチを選択します。これにより、githubページが有効になり、「https://github.組織名.edu/pages/ [ここにあなたのGTユーザー名] / lab-3-2 /」の形式で上記のGHページのURLが表示されます。

2

内容の修正

2020/09/19 20:44

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -4,9 +4,7 @@
4
4
 
5
5
  GitHubにて新しくレポジトリーを作成しました。
6
6
 
7
- …or create a new repository on the command line
8
-
9
- にて下記のコマンドを書かなくてはいけないのですが、
7
+ ターミナルにて下記のコマンドを書かなくてはいけないのですが、
10
8
 
11
9
  うまく行きません。
12
10
 

1

内容の修正

2020/09/19 20:32

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -12,30 +12,82 @@
12
12
 
13
13
 
14
14
 
15
- echo "# lab-3-2" >> README.md
16
-
17
15
  git init
18
16
 
19
- git add README.md
17
+ git add .
20
18
 
21
19
  git commit -m "first commit"
22
20
 
23
- git remote add origin https://github.組織名.edu/ユーザーネーム/lab-3-2.git
21
+ git remote add origin https://github.組織名.edu/[YOUR GT USER NAME HERE]/lab-3-2.git
24
22
 
25
23
  git push -u origin master
26
24
 
27
25
 
28
26
 
29
- はじめに下記のようにMacのターミナルに表示されますが
30
27
 
31
- いきなり上記のコマンドをコピーすれば良いのでしょうか?
32
28
 
33
- それとも上以外何かコマンドを打たてはいけませんか?
29
+ 記のようにしまうのですが、これ何が原因ですか?
30
+
31
+ GitHubに新しいレポジトリーを作成したいと思っています。
34
32
 
35
33
 
36
34
 
37
35
 
38
36
 
39
- Last login: Sat Sep 19 13:44:20 on ttys000
37
+ (base) 名前s-MacBook-Air:~ 名前$ cd/Users/名前/Desktop/6440
40
38
 
39
+ -bash: cd/Users/名前/Desktop/6440: No such file or directory
40
+
41
- (base) 名前-MacBook-Air:~ 名前$
41
+ (base) 名前s-MacBook-Air:~ 名前$ git init
42
+
43
+ Reinitialized existing Git repository in /Users/名前/.git/
44
+
45
+ (base) 名前s-MacBook-Air:~ 名前$ git add .
46
+
47
+ warning: could not open directory 'Library/Application Support/MobileSync/': Operation not permitted
48
+
49
+ warning: could not open directory 'Library/Application Support/CallHistoryTransactions/': Operation not permitted
50
+
51
+ warning: could not open directory 'Library/Application Support/com.apple.TCC/': Operation not permitted
52
+
53
+ warning: could not open directory 'Library/Application Support/CallHistoryDB/': Operation not permitted
54
+
55
+ warning: could not open directory 'Library/IdentityServices/': Operation not permitted
56
+
57
+ warning: could not open directory 'Library/Messages/': Operation not permitted
58
+
59
+ warning: could not open directory 'Library/HomeKit/': Operation not permitted
60
+
61
+ warning: could not open directory 'Library/Mail/': Operation not permitted
62
+
63
+ warning: could not open directory 'Library/Safari/': Operation not permitted
64
+
65
+ warning: could not open directory 'Library/Suggestions/': Operation not permitted
66
+
67
+ warning: could not open directory 'Library/Containers/com.apple.VoiceMemos/': Operation not permitted
68
+
69
+ warning: could not open directory 'Library/Containers/com.apple.Home/': Operation not permitted
70
+
71
+ warning: could not open directory 'Library/Containers/com.apple.Safari/': Operation not permitted
72
+
73
+ warning: could not open directory 'Library/Containers/com.apple.iChat/': Operation not permitted
74
+
75
+ warning: could not open directory 'Library/Containers/com.apple.mail/': Operation not permitted
76
+
77
+ warning: could not open directory 'Library/Containers/com.apple.news/': Operation not permitted
78
+
79
+ warning: could not open directory 'Library/Containers/com.apple.stocks/': Operation not permitted
80
+
81
+ warning: could not open directory 'Library/PersonalizationPortrait/': Operation not permitted
82
+
83
+ warning: could not open directory 'Library/Metadata/CoreSpotlight/': Operation not permitted
84
+
85
+ warning: could not open directory 'Library/Metadata/com.apple.IntelligentSuggestions/': Operation not permitted
86
+
87
+ warning: could not open directory 'Library/Cookies/': Operation not permitted
88
+
89
+ warning: could not open directory 'Library/Caches/com.apple.safaridavclient/': Operation not permitted
90
+
91
+ warning: could not open directory 'Library/Caches/CloudKit/com.apple.Safari/': Operation not permitted
92
+
93
+ warning: could not open directory 'Library/Caches/com.apple.Safari/': Operation not permitted