如何将更新更改推送到存储库

时间:2015-11-19 06:32:21

标签: php json git

我从github克隆了我的存储库,然后通过添加

更新了作曲家
composer install

所以我相信composer.json页面已经用新的代码行更新了。我想把它推回到github在线存储库。

我怎么能这样做,我试着做

git commit 

它给我以下消息

On branch master
Your branch is up-to-date with 'origin/master'.

Changes not staged for commit:
        modified:   .env.example
        modified:   composer.json
        modified:   config/app.php

因此对诸如composer.json,.env,config / app.php这些文件的更改不会对在线存储库产生影响吗?

对此有任何见解

由于

2 个答案:

答案 0 :(得分:1)

你需要这样做:

git add .

在:

git commit 

git add .将暂存所有提交文件。如果您希望暂存特定文件,则可以执行git add file_name

参考:https://git-scm.com/docs/git-add

答案 1 :(得分:0)

尝试遵循这一点。

从您的git存储库。

  1. git add .

  2. git commit -m "Comment Here"

  3. git push origin master