Jump to content

Django for Designers: Difference between revisions

imported>Aldeka
imported>Aldeka
Line 138:
# (use "git add <file>..." to include in what will be committed)
#
# myproject./
nothing added to commit but untracked files present (use "git add" to track)</source>
 
"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">git add manage.py/</source>. What does git status say now?
 
* git commit to commit those files. Adding the -m flag lets you say what the 'message' for the commit is in the same line:
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.