我在文件夹/ anotherFolder / file.php
中有一个文件我想添加,提交和推送, 什么过程可以有人向我展示一个示例命令,用于将file.php推送到远程存储库?
答案 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