Re: Git (Was: can't get includes to load) [message #180963 is a reply to message #180961] |
Fri, 29 March 2013 12:14 |
J.O. Aho
Messages: 194 Registered: September 2010
Karma:
|
Senior Member |
|
|
On 29/03/13 08:28, Cal Dershowitz wrote:
> On 03/28/2013 01:34 AM, J.O. Aho wrote:
>> On 28/03/13 08:41, Cal Dershowitz wrote:
>
>> after you run "git init" there will be a .git directory in the directory
>> where you did the "git init" in.
>
> I don't see it, and I just ran it.
> I try to understand, but since I don't see a .git file in root,
> apparently I don't.
> $ pwd
> /home/sites/migrate/php/php1
> $ ls -l
"ls -l" will not show it, as it's a hidden directory, you need to use
"ls -la", where the "a" is all.
> $ git init && git commit -m "initial commit"
> Initialized empty Git repository in /home/sites/migrate/php/php1/.git/
> # On branch master
> #
> # Initial commit
> #
> # Untracked files:
> # (use "git add <file>..." to include in what will be committed)
> #
> # git1.txt
> # git1.txt~
> # includes/
> # index.php
> # readme.txt
> # readme.txt~
> # style.css
> nothing added to commit but untracked files present (use "git add" to
> track)
This shows you created the git repository, before you can commit
something, you need to add the files you want to track.
git add index.php includes readme.txt style.css
and then you can make the commit.
Remember I told earlier in this thread that the 'git commit -m
"something" -a' only works on files you already are tracking of, in an
empty git repository you ain't tracking anything, those you need to add
files with "git add".
Please read this page:
http://refcardz.dzone.com/refcardz/getting-started-git
If you want more in depth video:
http://excess.org/article/2008/07/ogre-git-tutorial
--
//Aho
|
|
|