2

到目前为止,我的屏幕上有以下信息......

nicholas@ubuntu:~$ git add /home/nicholas/Documents
nicholas@ubuntu:~$ git status 
# On branch master
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#   .ICEauthority
#   .Xauthority
#   .audacity-data/
#   .bash_history
#   .bash_logout
#   .bashrc
#   .cache/
#   .compiz/
#   .config/
#   .dbus/
#   .dmrc
#   .dropbox/
#   .gconf/
#   .gitconfig
#   .goutputstream-ADHZQW
#   .goutputstream-GWSJRW
#   .gstreamer-0.10/
#   .gtk-bookmarks
#   .kde/
#   .local/
#   .mission-control/
#   .mozilla/
#   .pki/
#   .profile
#   .pulse-cookie
#   .pulse/
#   .signon/
#   .thunderbird/
#   .xsession-errors
#   .xsession-errors.old
#   Desktop/
#   Downloads/
#   Dropbox/
#   Pictures/
#   Ubuntu One/
#   examples.desktop
#   git status

没有添加到提交,但存在未跟踪的文件(使用“git add”来跟踪)我想推送到 github 的文件数量。根据我的理解,从跳转开始,我什么也没添加,我的状态似乎表明我什么也没做,即使我正在关注两个参考资料......其中一个参考资料是...... http://git-scm.com/ book/en/Getting-Started-Installing-Git ...而其他此类参考是... http://www.codeschool.com/courses/try-git...我在大约 15 分钟内完成了代码学校的 git 教程,没有任何问题,并且很好地遵循了,但在现实世界中,事情进展并不顺利...有人可以在 Git 上指导我一点并帮助我添加我的网站和从 libre office 到我的 github 存储库的写作纲要,这样我就可以开始我作为 git hub afficianado 的旅程......任何和所有的帮助将不胜感激......我期待收到你的来信。

4

1 回答 1

0

在这里,您似乎在主目录中完成了“git init”。

“如果您开始在 Git 中跟踪现有项目,则需要转到项目目录”

cd /path/to/directory/with/existing/source/code
$ git init
$ git add .
$ git status

你可能这个链接有用。 http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository#Initializing-a-Repository-in-an-Existing-Directory

于 2013-01-28T07:25:30.837 回答