如何将某些文件推送到存储库

时间:2011-10-26 14:56:21

标签: git

我在文件夹/ anotherFolder / file.php

中有一个文件

我想添加,提交和推送, 什么过程可以有人向我展示一个示例命令,用于将file.php推送到远程存储库?

2 个答案:

答案 0 :(得分:2)

$ git add folder/anotherFolder/file.php
$ git commit [-m'your message here']
$ git push

或者,如果没有工作副本更改,想要提交,只需:

$ git commit -am'your message here'
$ git push

答案 1 :(得分:0)

git init
git add folder/anotherFolder/file.php
git commit -am "your commit message"
git remote add origin <the_url_remote_repository>
git push -u origin master

the_url_remote_repository就是这样的(github的例子):

git@github.com:yourprofile/thereponame.git