我正在关注symfony2教程http://www.slideshare.net/weaverryan/symfony2-get-your-project-started。在幻灯片22上,我必须执行git add。
我打开github并拥有公共存储库helloise / helloises。
我想添加并提交以上内容。
我还按照幻灯片17上的命令说明我必须执行git init和git状态。
我的目录结构是:
~/symfony2/Symfony$ ls -lah
total 56K
drwxr-xr-x 8 helloises helloises 4.0K 2012-01-16 16:00 .
drwxr-xr-x 3 helloises helloises 4.0K 2012-01-16 15:37 ..
drwxr-xr-x 6 helloises helloises 4.0K 2012-01-16 14:11 app
drwxr-xr-x 2 helloises helloises 4.0K 2012-01-16 14:03 bin
-rw-r--r-- 1 helloises helloises 1.6K 2012-01-06 08:56 deps
-rw-r--r-- 1 helloises helloises 830 2012-01-06 08:56 deps.lock
drwxr-xr-x 8 helloises helloises 4.0K 2012-01-16 16:01 .git
-rw-r--r-- 1 helloises helloises 91 2012-01-16 15:41 gitignore
-rw-r--r-- 1 helloises helloises 1.1K 2012-01-06 08:56 LICENSE
-rw-r--r-- 1 helloises helloises 0 2012-01-16 16:00 README
-rw-r--r-- 1 helloises helloises 6.3K 2012-01-06 08:56 README.md
drwxr-xr-x 3 helloises helloises 4.0K 2012-01-16 14:03 src
drwxr-xr-x 13 helloises helloises 4.0K 2012-01-16 14:11 vendor
drwxr-xr-x 3 helloises helloises 4.0K 2012-01-06 08:56 web
答案 0 :(得分:1)
我不太清楚这个问题。但如果情况是:
您必须做的是在本地仓库配置远程仓库。
git remote add origin git@github.com:helloise/helloises.git
然后将您的文件放入索引并进行提交
git add .
git commit -m "Initial commit"
并将文件推送到远程仓库
git push origin master
阅读this了解详情。
答案 1 :(得分:0)
正如教程中所说:
git add .
使存储库跟踪您当前的目录
git commit -am "Initial commit"
将文件提交到存储库
git push origin master
将您的存储库上传到github