質問編集履歴

3

誤字を修正しました

2021/02/13 09:24

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -8,11 +8,9 @@
8
8
 
9
9
 
10
10
 
11
- ```Git
12
-
13
11
  `git status`の状態は以下です。
14
12
 
15
-
13
+ ```Git
16
14
 
17
15
  On branch master
18
16
 

2

git statusの状態について追記しました

2021/02/13 09:24

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -8,4 +8,32 @@
8
8
 
9
9
 
10
10
 
11
+ ```Git
12
+
13
+ `git status`の状態は以下です。
14
+
15
+
16
+
17
+ On branch master
18
+
19
+
20
+
21
+ No commits yet
22
+
23
+
24
+
25
+ Untracked files:
26
+
27
+ (use "git add<file>..." to include in what will be committed)
28
+
29
+ xxx.html
30
+
31
+
32
+
33
+ nothing added to commit but untracked files present(use "git add" to track)
34
+
35
+ ```
36
+
37
+
38
+
11
39
  そこで質問なのですがaddとcommitを同時に実行して変更コメントも残す方法があればアドバイスをいただけないでしょうか?

1

エラー表示について詳しく更新しました

2021/02/13 09:23

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,10 @@
1
1
  Gitをしばらく利用しているとaddとcommitを同時に実行したいと考えました。
2
2
 
3
- 調べてみると`git commit -a xxx.html`や`git commit -am "Change file"`のような記述をネットで見つけたのですが、どちらを実行しても「nothing add to commit」と表示され上手くいきません。
3
+ 調べてみると`git commit -a xxx.html`や`git commit -am "Change file"`のような記述をネットで見つけたのですが、どちらを実行しても上手くいきません。
4
+
5
+
6
+
7
+ 具体的には`git commit -a xxx.html`と入力すると「fatal: paths 'xxx.html ..." with -a does not make sense」と表示され`git commit -am "Change file`と入力すると「nothing added to commit but untracked files present」とエラーが表示されます。
4
8
 
5
9
 
6
10