Django for Designers: Difference between revisions

Content added Content deleted
Line 167: Line 167:
"Untracked files" means that git has noticed some new files inside its repository folder, but you haven't told git explicitly that you want it to "listen" for, and track, changes in those files. './' means that the folder we're in right now is currently untracked.
"Untracked files" means that git has noticed some new files inside its repository folder, but you haven't told git explicitly that you want it to "listen" for, and track, changes in those files. './' means that the folder we're in right now is currently untracked.


* Add the folder: <source lang="bash">
* Add the folder:
<source lang="bash">
# in django-for-designers/myproject
# in django-for-designers/myproject
git add ./
git add ./