到目前为止,我的屏幕上有以下信息......
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”跟踪) 我以为我只添加了我的文档目录中的文件,其中不仅包括来自libre办公室的.odt文件,还包含一个“官方网站”目录,其中包含了许多我想推送到github的文件。从我理解的跳跃中我没有添加任何内容,我的状态似乎告诉我,我甚至没有做什么,甚至认为我正在关注两个引用...一个这样的引用是...... http://git-scm.com/book/en/Getting-Started-Installing-Git ...和其他这样的参考是...... http://www.codeschool.com/courses/try-git ...我在大约十五分钟完成了代码学校git教程,没有任何问题,并且顺利地进行了很好的但是在现实世界中事情进展不顺利...可以有人教练我在Git上一点点帮助我添加我的网站和从libre办公室到我的github存储库的写作汇编,这样我就可以开始我的旅程作为一个git hub afficianado ...任何和所有的帮助将不胜感激...我期待着您的回复。
答案 0 :(得分:0)
在这里,您的主目录中似乎已经完成了“git init”。
“如果您开始在Git中跟踪现有项目,则需要转到项目目录”
cd /path/to/directory/with/existing/source/code
$ git init
$ git add .
$ git status