質問編集履歴

2

ignore 全貌

2020/02/14 05:57

投稿

kaori_oka
kaori_oka

スコア176

test CHANGED
File without changes
test CHANGED
@@ -38,7 +38,55 @@
38
38
 
39
39
  ```.gitignore
40
40
 
41
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
42
+
43
+ #
44
+
45
+ # If you find yourself ignoring temporary files generated by your text editor
46
+
47
+ # or operating system, you probably want to add a global ignore instead:
48
+
49
+ # git config --global core.excludesfile '~/.gitignore_global'
50
+
51
+
52
+
53
+ # Ignore bundler config.
54
+
41
- ~省略~
55
+ /.bundle
56
+
57
+
58
+
59
+ # Ignore all logfiles and tempfiles.
60
+
61
+ /log/*
62
+
63
+ /tmp/*
64
+
65
+ !/log/.keep
66
+
67
+ !/tmp/.keep
68
+
69
+
70
+
71
+ # Ignore uploaded files in development
72
+
73
+ /storage/*
74
+
75
+ !/storage/.keep
76
+
77
+
78
+
79
+ /node_modules
80
+
81
+ /yarn-error.log
82
+
83
+
84
+
85
+ /public/assets
86
+
87
+ .byebug_history
88
+
89
+
42
90
 
43
91
  # Ignore master key for decrypting credentials and more.
44
92
 
@@ -47,6 +95,8 @@
47
95
  /**/public/uploads
48
96
 
49
97
  .DS_Store
98
+
99
+
50
100
 
51
101
 
52
102
 

1

タイトル修正

2020/02/14 05:57

投稿

kaori_oka
kaori_oka

スコア176

test CHANGED
@@ -1 +1 @@
1
- Githubデスクトップアプリでファイルが検出されない
1
+ Githubデスクトップアプリでファイルが検出されないのですが
test CHANGED
File without changes