1

GitHub for mac を使用しているときに、コミットを送信しようとすると、次のエラー ボックスが表示されます。

# On branch Integrating-a-recommendations-textbox
# 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)
#
#   modified:   assets/app/scripts/templates/popups/recommend.hbs
#   modified:   web/wgwt/models.py
#   modified:   web/wgwt/views.py
#
no changes added to commit (use "git add" and/or "git commit -a")
 (1)

たとえば、ここでいくつかの他の質問を見ました: GitHub for Mac: Can't commit and sync or just commit because I have to add files before

しかし、回避策としてターミナルを使用するのではなく、GitHub for mac を使用してコミットしたいと考えています。マシンを再起動しても解決しませんでした。ファイルに加えた追加は GitHub for Mac の [変更] タブで緑色で確認できますが、このエラーを回避できないようです。助けてくれてありがとう!

4

1 に答える 1

1

GitHub for Mac GUI を使用したいことは理解していますが、代わりにターミナルから変更をコミットする場合は、次のようにします。

# Get the status of your working copy:
$ git status
# On branch Integrating-a-recommendations-textbox
# 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)
#
#   modified:   assets/app/scripts/templates/popups/recommend.hbs
#   modified:   web/wgwt/models.py
#   modified:   web/wgwt/views.py
#

# Add each file you want to commit individually:
$ git add web/wgwt/models.py

# Or add them all at once:
$ git add "*"

# Make your commit
$ git commit

# You can also use the `--all` or `-a` flags during the commit
# to add all **tracked/modified** files (but not untracked files)
$ git commit -a

# To push the new commits to a remote repo, use the following:
$ git push <remote-name> head
于 2013-08-05T03:53:41.167 に答える