0

WWW GitHub で作成した github リポジトリに、いくつかの新しいディレクトリとファイルを追加しようとしています。まず、WWW GitHub でリポジトリを作成し、readme で初期化しました。次に、それをローカルボックスに複製し、一連のファイル、ディレクトリ、およびディレクトリ内のファイルを追加しました。

git add ./*以前は機能していたが、ディレクトリ内で何も認識せず、何も変わっていないと言いました。git add -A .だから私は同じことを試しました。それから私は使用git add *し、その中のファイルを含むディレクトリを1つだけ追加しましたが、他のディレクトリは追加していません。ディレクトリ構造は次のとおりです。

zabbix_config_manager
|
| - roles
|| - role_1.rb
|| - role_2.rb
|
| - zabbix_config_manager
|| - attributes
||| - default.rb
||
|| - recipes
||| - default.rb
||| - recipe_1.rb

はこれgit statusを示しています。

$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       new file:   roles/role_asp_zabbix_agent.rb
#       new file:   roles/role_corp_server_ceszabbixcrt01.rb
#       new file:   roles/role_corp_server_ceszabbixcrt02.rb
#       new file:   roles/role_corp_server_grdzabbixprd01.rb
#       new file:   roles/role_corp_zabbix_agent.rb
#       new file:   roles/role_corp_zabbix_javagateway.rb
#       new file:   roles/role_corp_zabbix_proxy.rb
#       new file:   roles/role_corp_zabbix_server.rb
#
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#   (commit or discard the untracked or modified content in submodules)
#
#       modified:   zabbix_config_manager (modified content)
#

どうすればこれを回避できますか?

4

1 に答える 1