What does Linus Torvalds mean when he says that Git “never ever” tracks a file? The 2019 Stack Overflow Developer Survey Results Are InView the change history of a file using Git versioningHow does git matches blobs to files across commit trees?Git workflow and rebase vs merge questionsHow to stop tracking and ignore changes to a file in Git?How to make Git “forget” about a file that was tracked but is now in .gitignore?In plain English, what does “git reset” do?Handling file renames in gitsrc refspec master does not match any when pushing commits in gitFind when a file was deleted in GitWhat does the term “porcelain” mean in Git?What does cherry-picking a commit with Git mean?Various ways to remove local Git changes

What do these terms in Caesar's Gallic Wars mean?

If a sorcerer casts the Banishment spell on a PC while in Avernus, does the PC return to their home plane?

Can I have a signal generator on while it's not connected?

Why can't devices on different VLANs, but on the same subnet, communicate?

Is it correct to say the Neural Networks are an alternative way of performing Maximum Likelihood Estimation? if not, why?

How do you keep chess fun when your opponent constantly beats you?

Can we generate random numbers using irrational numbers like π and e?

If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?

Is it okay to consider publishing in my first year of PhD?

How did passengers keep warm on sail ships?

What information about me do stores get via my credit card?

Straighten subgroup lattice

Slides for 30 min~1 hr Skype tenure track application interview

Why not take a picture of a closer black hole?

How to support a colleague who finds meetings extremely tiring?

What is the motivation for a law requiring 2 parties to consent for recording a conversation

What does Linus Torvalds mean when he says that Git "never ever" tracks a file?

Can you cast a spell on someone in the Ethereal Plane, if you are on the Material Plane and have the True Seeing spell active?

Mathematics of imaging the black hole

How much of the clove should I use when using big garlic heads?

Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?

Can withdrawing asylum be illegal?

Keeping a retro style to sci-fi spaceships?

How to charge AirPods to keep battery healthy?



What does Linus Torvalds mean when he says that Git “never ever” tracks a file?



The 2019 Stack Overflow Developer Survey Results Are InView the change history of a file using Git versioningHow does git matches blobs to files across commit trees?Git workflow and rebase vs merge questionsHow to stop tracking and ignore changes to a file in Git?How to make Git “forget” about a file that was tracked but is now in .gitignore?In plain English, what does “git reset” do?Handling file renames in gitsrc refspec master does not match any when pushing commits in gitFind when a file was deleted in GitWhat does the term “porcelain” mean in Git?What does cherry-picking a commit with Git mean?Various ways to remove local Git changes



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








143















Quoting Linus Torvalds when asked how many files Git can handle during his Tech Talk at Google in 2007 (43:09):




…Git tracks your content. It never ever tracks a single file. You cannot track a file in Git. What you can do is you can track a project that has a single file, but if your project has a single file, sure do that and you can do it, but if you track 10,000 files, Git never ever sees those as individual files. Git thinks everything as the full content. All history in Git is based on the history of the whole project…




(Transcripts here.)



Yet, when you dive into the Git book, the first thing you are told is that a file in Git can be either tracked or untracked. Furthermore, it seems to me like the whole Git experience is geared towards file versioning. When using git diff or git status output is presented on a per file basis. When using git add you also get to choose on a per file basis. You can even review history on a file basis and is lightning fast.



How should this statement be interpreted? In terms of file tracking, how is Git different from other source control systems, such as VCS?










share|improve this question



















  • 11





    reddit.com/r/git/comments/5xmrkv/what_is_a_snapshot_in_git - "For where you are at the moment, I suspect what's more important to realize is that there's a difference between how Git presents files to users and how it deals with them internally. As presented to the user, a snapshot contains complete files, not merely diffs. But internally, yes, Git uses diffs to generate packfiles that efficiently store revisions." (This is sharp contrast to, eg. Subversion.)

    – user2864740
    2 days ago







  • 5





    Git doesn't track files, it tracks changesets. Most version control systems track files. As an example of how / why this can matter, try to check in an empty directory to git (spolier: you can't, because that's an "empty" changeset).

    – Elliott Frisch
    2 days ago







  • 11





    @ElliottFrisch That doesn't sound right. Your description is closer to what e.g. darcs does. Git stores snapshots, not changesets.

    – melpomene
    2 days ago






  • 4





    I think he means Git does not track a file directly. A file includes its name and content. Git tracks contents as blobs. Given a blob only, you can't tell what its corresponding file name is. It could be the content of multiple files with different names under different paths. The bindings between a path name and a blob are described in a tree object.

    – ElpieKay
    2 days ago







  • 2





    Related: Randal Schwartz' followup to Linus' talk (also a Google Tech talk) - "... What Git is really all about ... Linus said what Git is NOT".

    – Peter Mortensen
    yesterday


















143















Quoting Linus Torvalds when asked how many files Git can handle during his Tech Talk at Google in 2007 (43:09):




…Git tracks your content. It never ever tracks a single file. You cannot track a file in Git. What you can do is you can track a project that has a single file, but if your project has a single file, sure do that and you can do it, but if you track 10,000 files, Git never ever sees those as individual files. Git thinks everything as the full content. All history in Git is based on the history of the whole project…




(Transcripts here.)



Yet, when you dive into the Git book, the first thing you are told is that a file in Git can be either tracked or untracked. Furthermore, it seems to me like the whole Git experience is geared towards file versioning. When using git diff or git status output is presented on a per file basis. When using git add you also get to choose on a per file basis. You can even review history on a file basis and is lightning fast.



How should this statement be interpreted? In terms of file tracking, how is Git different from other source control systems, such as VCS?










share|improve this question



















  • 11





    reddit.com/r/git/comments/5xmrkv/what_is_a_snapshot_in_git - "For where you are at the moment, I suspect what's more important to realize is that there's a difference between how Git presents files to users and how it deals with them internally. As presented to the user, a snapshot contains complete files, not merely diffs. But internally, yes, Git uses diffs to generate packfiles that efficiently store revisions." (This is sharp contrast to, eg. Subversion.)

    – user2864740
    2 days ago







  • 5





    Git doesn't track files, it tracks changesets. Most version control systems track files. As an example of how / why this can matter, try to check in an empty directory to git (spolier: you can't, because that's an "empty" changeset).

    – Elliott Frisch
    2 days ago







  • 11





    @ElliottFrisch That doesn't sound right. Your description is closer to what e.g. darcs does. Git stores snapshots, not changesets.

    – melpomene
    2 days ago






  • 4





    I think he means Git does not track a file directly. A file includes its name and content. Git tracks contents as blobs. Given a blob only, you can't tell what its corresponding file name is. It could be the content of multiple files with different names under different paths. The bindings between a path name and a blob are described in a tree object.

    – ElpieKay
    2 days ago







  • 2





    Related: Randal Schwartz' followup to Linus' talk (also a Google Tech talk) - "... What Git is really all about ... Linus said what Git is NOT".

    – Peter Mortensen
    yesterday














143












143








143


23






Quoting Linus Torvalds when asked how many files Git can handle during his Tech Talk at Google in 2007 (43:09):




…Git tracks your content. It never ever tracks a single file. You cannot track a file in Git. What you can do is you can track a project that has a single file, but if your project has a single file, sure do that and you can do it, but if you track 10,000 files, Git never ever sees those as individual files. Git thinks everything as the full content. All history in Git is based on the history of the whole project…




(Transcripts here.)



Yet, when you dive into the Git book, the first thing you are told is that a file in Git can be either tracked or untracked. Furthermore, it seems to me like the whole Git experience is geared towards file versioning. When using git diff or git status output is presented on a per file basis. When using git add you also get to choose on a per file basis. You can even review history on a file basis and is lightning fast.



How should this statement be interpreted? In terms of file tracking, how is Git different from other source control systems, such as VCS?










share|improve this question
















Quoting Linus Torvalds when asked how many files Git can handle during his Tech Talk at Google in 2007 (43:09):




…Git tracks your content. It never ever tracks a single file. You cannot track a file in Git. What you can do is you can track a project that has a single file, but if your project has a single file, sure do that and you can do it, but if you track 10,000 files, Git never ever sees those as individual files. Git thinks everything as the full content. All history in Git is based on the history of the whole project…




(Transcripts here.)



Yet, when you dive into the Git book, the first thing you are told is that a file in Git can be either tracked or untracked. Furthermore, it seems to me like the whole Git experience is geared towards file versioning. When using git diff or git status output is presented on a per file basis. When using git add you also get to choose on a per file basis. You can even review history on a file basis and is lightning fast.



How should this statement be interpreted? In terms of file tracking, how is Git different from other source control systems, such as VCS?







git version-control






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









Peter Mortensen

13.9k1987113




13.9k1987113










asked 2 days ago









Simón Ramírez AmayaSimón Ramírez Amaya

5922414




5922414







  • 11





    reddit.com/r/git/comments/5xmrkv/what_is_a_snapshot_in_git - "For where you are at the moment, I suspect what's more important to realize is that there's a difference between how Git presents files to users and how it deals with them internally. As presented to the user, a snapshot contains complete files, not merely diffs. But internally, yes, Git uses diffs to generate packfiles that efficiently store revisions." (This is sharp contrast to, eg. Subversion.)

    – user2864740
    2 days ago







  • 5





    Git doesn't track files, it tracks changesets. Most version control systems track files. As an example of how / why this can matter, try to check in an empty directory to git (spolier: you can't, because that's an "empty" changeset).

    – Elliott Frisch
    2 days ago







  • 11





    @ElliottFrisch That doesn't sound right. Your description is closer to what e.g. darcs does. Git stores snapshots, not changesets.

    – melpomene
    2 days ago






  • 4





    I think he means Git does not track a file directly. A file includes its name and content. Git tracks contents as blobs. Given a blob only, you can't tell what its corresponding file name is. It could be the content of multiple files with different names under different paths. The bindings between a path name and a blob are described in a tree object.

    – ElpieKay
    2 days ago







  • 2





    Related: Randal Schwartz' followup to Linus' talk (also a Google Tech talk) - "... What Git is really all about ... Linus said what Git is NOT".

    – Peter Mortensen
    yesterday













  • 11





    reddit.com/r/git/comments/5xmrkv/what_is_a_snapshot_in_git - "For where you are at the moment, I suspect what's more important to realize is that there's a difference between how Git presents files to users and how it deals with them internally. As presented to the user, a snapshot contains complete files, not merely diffs. But internally, yes, Git uses diffs to generate packfiles that efficiently store revisions." (This is sharp contrast to, eg. Subversion.)

    – user2864740
    2 days ago







  • 5





    Git doesn't track files, it tracks changesets. Most version control systems track files. As an example of how / why this can matter, try to check in an empty directory to git (spolier: you can't, because that's an "empty" changeset).

    – Elliott Frisch
    2 days ago







  • 11





    @ElliottFrisch That doesn't sound right. Your description is closer to what e.g. darcs does. Git stores snapshots, not changesets.

    – melpomene
    2 days ago






  • 4





    I think he means Git does not track a file directly. A file includes its name and content. Git tracks contents as blobs. Given a blob only, you can't tell what its corresponding file name is. It could be the content of multiple files with different names under different paths. The bindings between a path name and a blob are described in a tree object.

    – ElpieKay
    2 days ago







  • 2





    Related: Randal Schwartz' followup to Linus' talk (also a Google Tech talk) - "... What Git is really all about ... Linus said what Git is NOT".

    – Peter Mortensen
    yesterday








11




11





reddit.com/r/git/comments/5xmrkv/what_is_a_snapshot_in_git - "For where you are at the moment, I suspect what's more important to realize is that there's a difference between how Git presents files to users and how it deals with them internally. As presented to the user, a snapshot contains complete files, not merely diffs. But internally, yes, Git uses diffs to generate packfiles that efficiently store revisions." (This is sharp contrast to, eg. Subversion.)

– user2864740
2 days ago






reddit.com/r/git/comments/5xmrkv/what_is_a_snapshot_in_git - "For where you are at the moment, I suspect what's more important to realize is that there's a difference between how Git presents files to users and how it deals with them internally. As presented to the user, a snapshot contains complete files, not merely diffs. But internally, yes, Git uses diffs to generate packfiles that efficiently store revisions." (This is sharp contrast to, eg. Subversion.)

– user2864740
2 days ago





5




5





Git doesn't track files, it tracks changesets. Most version control systems track files. As an example of how / why this can matter, try to check in an empty directory to git (spolier: you can't, because that's an "empty" changeset).

– Elliott Frisch
2 days ago






Git doesn't track files, it tracks changesets. Most version control systems track files. As an example of how / why this can matter, try to check in an empty directory to git (spolier: you can't, because that's an "empty" changeset).

– Elliott Frisch
2 days ago





11




11





@ElliottFrisch That doesn't sound right. Your description is closer to what e.g. darcs does. Git stores snapshots, not changesets.

– melpomene
2 days ago





@ElliottFrisch That doesn't sound right. Your description is closer to what e.g. darcs does. Git stores snapshots, not changesets.

– melpomene
2 days ago




4




4





I think he means Git does not track a file directly. A file includes its name and content. Git tracks contents as blobs. Given a blob only, you can't tell what its corresponding file name is. It could be the content of multiple files with different names under different paths. The bindings between a path name and a blob are described in a tree object.

– ElpieKay
2 days ago






I think he means Git does not track a file directly. A file includes its name and content. Git tracks contents as blobs. Given a blob only, you can't tell what its corresponding file name is. It could be the content of multiple files with different names under different paths. The bindings between a path name and a blob are described in a tree object.

– ElpieKay
2 days ago





2




2





Related: Randal Schwartz' followup to Linus' talk (also a Google Tech talk) - "... What Git is really all about ... Linus said what Git is NOT".

– Peter Mortensen
yesterday






Related: Randal Schwartz' followup to Linus' talk (also a Google Tech talk) - "... What Git is really all about ... Linus said what Git is NOT".

– Peter Mortensen
yesterday













5 Answers
5






active

oldest

votes


















190














In CVS, history was tracked on a per-file basis. A branch might consist of various files with their own various revisions, each with its own version number. CVS was based on RCS (Revision Control System), which tracked individual files in a similar way.



On the other hand, Git takes snapshots of the state of the whole project. Files are not tracked and versioned independently; a revision in the repository refers to a state of the whole project, not one file.



When Git refers to tracking a file, it means simply that it is to be included in the history of the project. Linus's talk was not referring to tracking files in the Git context, but was contrasting the CVS and RCS model with the snapshot-based model used in Git.






share|improve this answer




















  • 4





    You could add that this is why in CVS and Subversion, you can use tags like $Id$ in a file. The same does not work in git, because the design is different.

    – gerrit
    yesterday






  • 27





    And content is not bound to a file as you would expect. Try moving 80% of the code of one file to another. Git automatically detects a file move + 20% change, even when you just moved code around in existing files.

    – allo
    yesterday






  • 4





    @allo As a side-effect of that, git can do one thing the others can't: when two files are merged and you use "git blame -C", git can look down both histories. In file-based tracking, you have to pick which of the original files is the real original, and the other lines all appear brand-new.

    – Izkata
    yesterday






  • 1





    @allo, Izkata - And it's the querying entity that works all this out by analysing the repo contents at query time (commit histories and differences between referenced trees and blobs), rather than requiring the committing entity and its human user to correctly specify or synthesise this information at commit time - nor the repo tool developer to design & implement this capability and the corresponding metadata schema before the tool is deployed. Torvalds argued that such analysis will only get better over time, and all history of every git repo since day one will benefit.

    – Jeremy
    13 hours ago



















76














I agree with brian m. carlson's answer: Linus is indeed distinguishing, at least in part, between file-oriented and commit-oriented version control systems. But I think there is more to it than that.



In my book, which is stalled and might never get finished, I tried to come up with a taxonomy for version control systems. In my taxonomy the term for what we're interested here is the atomicity of the version control system. See what is currently page 22. When a VCS has file-level atomicity, there is in fact a history for each file. The VCS must remember the name of the file and what occurred to it at each point.



Git doesn't do that. Git has only a history of commits—the commit is its unit of atomicity, and the history is the set of commits in the repository. What a commit remembers is the data—a whole tree-full of file names and the contents that go with each of those files—plus some metadata: for instance, who made the commit, when, and why, and the internal Git hash ID of the commit's parent commit. (It is this parent, and the directed acycling graph formed by reading all commits and their parents, that is the history in a repository.)



Note that a VCS can be commit-oriented, yet still store data file-by-file. That's an implementation detail, though sometimes an important one, and Git does not do that either. Instead, each commit records a tree, with the tree object encoding file names, modes (i.e., is this file executable or not?), and a pointer to the actual file content. The content itself is stored independently, in a blob object. Like a commit object, a blob gets a hash ID that is unique to its content—but unlike a commit, which can only appear once, the blob can appear in many commits. So the underlying file content in Git is stored directly as a blob, and then indirectly in a tree object whose hash ID is recorded (directly or indirectly) in the commit object.



When you ask Git to show you a file's history using:



git log [--follow] [starting-point] [--] path/to/file


what Git is really doing is walking the commit history, which is the only history Git has, but not showing you any of these commits unless:



  • the commit is a non-merge commit, and

  • the parent of that commit also has the file, but the content in the parent differs, or the parent of the commit doesn't have the file at all

(but some of these conditions can be modified via additional git log options, and there's a very difficult to describe side effect called History Simplification that makes Git omit some commits from the history walk entirely). The file history you see here does not exactly exist in the repository, in some sense: instead, it's just a synthetic subset of the real history. You'll get a different "file history" if you use different git log options!






share|improve this answer

























  • Another thing to add is this allows Git to do things like shallow clones. It just needs to retrieve the head commit and all the blobs it refers to. It doesn't need to recreate files by applying change sets.

    – Wes Toleman
    yesterday











  • @WesToleman: it definitely makes that easier. Mercurial stores deltas, with occasional resets, and while the Mercurial folks intend to add shallow clones there (which is possible due to the "reset" idea), they haven't actually done it yet (because it's more of a technical challenge).

    – torek
    yesterday











  • @torek I have a doubt regarding your description about Git answering a file history request but I think it deserves its own proper question: stackoverflow.com/questions/55616349/…

    – Simón Ramírez Amaya
    yesterday


















5














"git does not track files" basically means that git's commits consist of a file tree snapshot connecting a path in the tree to a "blob" and a commit graph tracking the history of commits. Everything else is reconstructed on-the-fly by commands like "git log" and "git blame". This reconstruction can be told via various options how hard it should look for file-based changes. The default heuristics can determine when a blob changes place in the file tree without change, or when a file is associated with a different blob than before. The compression mechanisms Git uses don't care a whole lot about blob/file boundaries. If the content is somewhere already, this will keep the repository growth small without associating the various blobs.



Now that is the repository. Git also has a working tree, and in this working tree there are tracked and untracked files. Only the tracked files are recorded in the index (staging area? cache?) and only what is tracked there makes it into the repository.



The index is file-oriented and there are some file-oriented commands for manipulating it. But what ends up in the repository is just commits in the form of file tree snapshots and the associated blob data and the commit's ancestors.



Since Git does not track file histories and renames and its efficiency does not depend on them, sometimes you have to try a few times with different options until Git produces the history/diffs/blames you are interested in for non-trivial histories.



That's different with systems like Subversion which record rather than reconstruct histories. If it's not on record, you don't get to hear about it.



I actually built a differential installer at one time that just compared release trees by checking them into Git and then producing a script duplicating their effect. Since sometimes whole trees were moved, this produced much smaller differential installers than overwriting/deleting everything would have produced.






share|improve this answer






























    3














    The confusing bit is here:




    Git never ever sees those as individual files. Git thinks everything as the full content.




    Git often uses 160 bit hashes in place of objects in its own repo. A tree of files is basically a list of names and hashes associated with the content of each (plus some metadata).



    But the 160 bit hash uniquely identifies the content (within the universe of the git database). So a tree with hashes as content includes the content in its state.



    If you change the state of the content of a file, its hash changes. But if its hash changes, the hash associated with the file name's content also changes. Which in turn changes the hash of the "directory tree".



    When a git database stores a directory tree, that directory tree implies and includes all of the content of all of the subdirectories and all of the files in it.



    It is organized in a tree structure with (immutable, reusable) pointers to blobs or other trees, but logically it is a single snapshot of the entire content of the entire tree. The representation in the git database isn't the flat data contents, but logically it is all of its data and nothing else.



    If you serialized the tree to a filesystem, deleted all .git folders, and told git to add the tree back into its database, you'd end up with adding nothing to the database -- the element would already be there.



    It may help to think of git's hashes as a reference counted pointer to immutable data.



    If you built an application around that, a document is a bunch of pages, which have layers, which have groups, which have objects.



    When you want to change an object, you have to create a completely new group for it. If you want to change a group, you have to create a new layer, which needs a new page, which needs a new document.



    Every time you change a single object, it spawns a new document. The old document continues to exist. The new and old document share most of their content -- they have the same pages (except 1). That one page has the same layers (except 1). That layer has the same groups (except 1). That group has the same objects (except 1).



    And by same, I mean logically a copy, but implementation-wise it is just another reference counted pointer to the same immutable object.



    A git repo is a lot like that.



    This means that a given git changeset contains its commit message (as a hash code), it contains its work tree, and it contains its parent changes.



    Those parent changes contain their parent changes, all the way back.



    The part of the git repo that contains history is that chain of changes. That chain of changes it at a level above the "directory" tree -- from a "directory" tree, you cannot uniquely get to a change set and the chain of changes.



    To find out what happens to a file, you start with that file in a changeset. That changeset has a history. Often in that history, the same named file exists, sometimes with the same content. If the content is the same, there was no change to the file. If it is different, there is a change, and work needs to be done to work out exactly what.



    Sometimes the file is gone; but, the "directory" tree might have another file with the same content (same hash code), so we can track it that way (note; this is why you want a commit-to-move a file separate from a commit-to-edit). Or the same file name, and after checking the file is similar enough.



    So git can patchwork together a "file history".



    But this file history comes from efficient parsing of the "entire changeset", not from a link from one version of the file to another.






    share|improve this answer






























      2














      Git doesn't track a file directly, but tracks snapshots of the repository, and these snapshots happen to consist of files.



      Here's a way to look at it.



      In other version control systems (SVN, Rational ClearCase), you can right click on a file and get its change history.



      In Git, there is no direct command that does this. See this question. You'll be surprised at how many different answers there are. There is no one simple answer because Git doesn't simply track a file, not in the way that SVN or ClearCase does it.






      share|improve this answer








      New contributor




      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.















      • 4





        I think I get what you're trying to say, but "In Git, there is no direct command that does this" is directly contradicted by the answers to the question you've linked to. While it's true that versioning happens at the level of the whole repository, there are typically loads of ways to achieve anything in Git, so having multiple commands to show a file's history isn't evidence of much.

        – Joe Lee-Moyet
        yesterday












      • I skimmed the first few answers of the question you linked and all of them use git log or some program built on top of that (or some alias that does the same thing). But even if there were lots of different ways, as Joe says that's also true for showing branch history. (also git log -p <file> is built in and does exactly that)

        – Voo
        yesterday












      • Are you sure that SVN internally stores changes per file? I haven't used it in some time already, but I vaguely remember having files named like version ids, rather than reflection of project file structure.

        – Artur Biesiadowski
        16 hours ago











      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55602748%2fwhat-does-linus-torvalds-mean-when-he-says-that-git-never-ever-tracks-a-file%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      5 Answers
      5






      active

      oldest

      votes








      5 Answers
      5






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      190














      In CVS, history was tracked on a per-file basis. A branch might consist of various files with their own various revisions, each with its own version number. CVS was based on RCS (Revision Control System), which tracked individual files in a similar way.



      On the other hand, Git takes snapshots of the state of the whole project. Files are not tracked and versioned independently; a revision in the repository refers to a state of the whole project, not one file.



      When Git refers to tracking a file, it means simply that it is to be included in the history of the project. Linus's talk was not referring to tracking files in the Git context, but was contrasting the CVS and RCS model with the snapshot-based model used in Git.






      share|improve this answer




















      • 4





        You could add that this is why in CVS and Subversion, you can use tags like $Id$ in a file. The same does not work in git, because the design is different.

        – gerrit
        yesterday






      • 27





        And content is not bound to a file as you would expect. Try moving 80% of the code of one file to another. Git automatically detects a file move + 20% change, even when you just moved code around in existing files.

        – allo
        yesterday






      • 4





        @allo As a side-effect of that, git can do one thing the others can't: when two files are merged and you use "git blame -C", git can look down both histories. In file-based tracking, you have to pick which of the original files is the real original, and the other lines all appear brand-new.

        – Izkata
        yesterday






      • 1





        @allo, Izkata - And it's the querying entity that works all this out by analysing the repo contents at query time (commit histories and differences between referenced trees and blobs), rather than requiring the committing entity and its human user to correctly specify or synthesise this information at commit time - nor the repo tool developer to design & implement this capability and the corresponding metadata schema before the tool is deployed. Torvalds argued that such analysis will only get better over time, and all history of every git repo since day one will benefit.

        – Jeremy
        13 hours ago
















      190














      In CVS, history was tracked on a per-file basis. A branch might consist of various files with their own various revisions, each with its own version number. CVS was based on RCS (Revision Control System), which tracked individual files in a similar way.



      On the other hand, Git takes snapshots of the state of the whole project. Files are not tracked and versioned independently; a revision in the repository refers to a state of the whole project, not one file.



      When Git refers to tracking a file, it means simply that it is to be included in the history of the project. Linus's talk was not referring to tracking files in the Git context, but was contrasting the CVS and RCS model with the snapshot-based model used in Git.






      share|improve this answer




















      • 4





        You could add that this is why in CVS and Subversion, you can use tags like $Id$ in a file. The same does not work in git, because the design is different.

        – gerrit
        yesterday






      • 27





        And content is not bound to a file as you would expect. Try moving 80% of the code of one file to another. Git automatically detects a file move + 20% change, even when you just moved code around in existing files.

        – allo
        yesterday






      • 4





        @allo As a side-effect of that, git can do one thing the others can't: when two files are merged and you use "git blame -C", git can look down both histories. In file-based tracking, you have to pick which of the original files is the real original, and the other lines all appear brand-new.

        – Izkata
        yesterday






      • 1





        @allo, Izkata - And it's the querying entity that works all this out by analysing the repo contents at query time (commit histories and differences between referenced trees and blobs), rather than requiring the committing entity and its human user to correctly specify or synthesise this information at commit time - nor the repo tool developer to design & implement this capability and the corresponding metadata schema before the tool is deployed. Torvalds argued that such analysis will only get better over time, and all history of every git repo since day one will benefit.

        – Jeremy
        13 hours ago














      190












      190








      190







      In CVS, history was tracked on a per-file basis. A branch might consist of various files with their own various revisions, each with its own version number. CVS was based on RCS (Revision Control System), which tracked individual files in a similar way.



      On the other hand, Git takes snapshots of the state of the whole project. Files are not tracked and versioned independently; a revision in the repository refers to a state of the whole project, not one file.



      When Git refers to tracking a file, it means simply that it is to be included in the history of the project. Linus's talk was not referring to tracking files in the Git context, but was contrasting the CVS and RCS model with the snapshot-based model used in Git.






      share|improve this answer















      In CVS, history was tracked on a per-file basis. A branch might consist of various files with their own various revisions, each with its own version number. CVS was based on RCS (Revision Control System), which tracked individual files in a similar way.



      On the other hand, Git takes snapshots of the state of the whole project. Files are not tracked and versioned independently; a revision in the repository refers to a state of the whole project, not one file.



      When Git refers to tracking a file, it means simply that it is to be included in the history of the project. Linus's talk was not referring to tracking files in the Git context, but was contrasting the CVS and RCS model with the snapshot-based model used in Git.







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited yesterday









      terdon

      1,99042245




      1,99042245










      answered 2 days ago









      brian m. carlsonbrian m. carlson

      2,3611512




      2,3611512







      • 4





        You could add that this is why in CVS and Subversion, you can use tags like $Id$ in a file. The same does not work in git, because the design is different.

        – gerrit
        yesterday






      • 27





        And content is not bound to a file as you would expect. Try moving 80% of the code of one file to another. Git automatically detects a file move + 20% change, even when you just moved code around in existing files.

        – allo
        yesterday






      • 4





        @allo As a side-effect of that, git can do one thing the others can't: when two files are merged and you use "git blame -C", git can look down both histories. In file-based tracking, you have to pick which of the original files is the real original, and the other lines all appear brand-new.

        – Izkata
        yesterday






      • 1





        @allo, Izkata - And it's the querying entity that works all this out by analysing the repo contents at query time (commit histories and differences between referenced trees and blobs), rather than requiring the committing entity and its human user to correctly specify or synthesise this information at commit time - nor the repo tool developer to design & implement this capability and the corresponding metadata schema before the tool is deployed. Torvalds argued that such analysis will only get better over time, and all history of every git repo since day one will benefit.

        – Jeremy
        13 hours ago













      • 4





        You could add that this is why in CVS and Subversion, you can use tags like $Id$ in a file. The same does not work in git, because the design is different.

        – gerrit
        yesterday






      • 27





        And content is not bound to a file as you would expect. Try moving 80% of the code of one file to another. Git automatically detects a file move + 20% change, even when you just moved code around in existing files.

        – allo
        yesterday






      • 4





        @allo As a side-effect of that, git can do one thing the others can't: when two files are merged and you use "git blame -C", git can look down both histories. In file-based tracking, you have to pick which of the original files is the real original, and the other lines all appear brand-new.

        – Izkata
        yesterday






      • 1





        @allo, Izkata - And it's the querying entity that works all this out by analysing the repo contents at query time (commit histories and differences between referenced trees and blobs), rather than requiring the committing entity and its human user to correctly specify or synthesise this information at commit time - nor the repo tool developer to design & implement this capability and the corresponding metadata schema before the tool is deployed. Torvalds argued that such analysis will only get better over time, and all history of every git repo since day one will benefit.

        – Jeremy
        13 hours ago








      4




      4





      You could add that this is why in CVS and Subversion, you can use tags like $Id$ in a file. The same does not work in git, because the design is different.

      – gerrit
      yesterday





      You could add that this is why in CVS and Subversion, you can use tags like $Id$ in a file. The same does not work in git, because the design is different.

      – gerrit
      yesterday




      27




      27





      And content is not bound to a file as you would expect. Try moving 80% of the code of one file to another. Git automatically detects a file move + 20% change, even when you just moved code around in existing files.

      – allo
      yesterday





      And content is not bound to a file as you would expect. Try moving 80% of the code of one file to another. Git automatically detects a file move + 20% change, even when you just moved code around in existing files.

      – allo
      yesterday




      4




      4





      @allo As a side-effect of that, git can do one thing the others can't: when two files are merged and you use "git blame -C", git can look down both histories. In file-based tracking, you have to pick which of the original files is the real original, and the other lines all appear brand-new.

      – Izkata
      yesterday





      @allo As a side-effect of that, git can do one thing the others can't: when two files are merged and you use "git blame -C", git can look down both histories. In file-based tracking, you have to pick which of the original files is the real original, and the other lines all appear brand-new.

      – Izkata
      yesterday




      1




      1





      @allo, Izkata - And it's the querying entity that works all this out by analysing the repo contents at query time (commit histories and differences between referenced trees and blobs), rather than requiring the committing entity and its human user to correctly specify or synthesise this information at commit time - nor the repo tool developer to design & implement this capability and the corresponding metadata schema before the tool is deployed. Torvalds argued that such analysis will only get better over time, and all history of every git repo since day one will benefit.

      – Jeremy
      13 hours ago






      @allo, Izkata - And it's the querying entity that works all this out by analysing the repo contents at query time (commit histories and differences between referenced trees and blobs), rather than requiring the committing entity and its human user to correctly specify or synthesise this information at commit time - nor the repo tool developer to design & implement this capability and the corresponding metadata schema before the tool is deployed. Torvalds argued that such analysis will only get better over time, and all history of every git repo since day one will benefit.

      – Jeremy
      13 hours ago














      76














      I agree with brian m. carlson's answer: Linus is indeed distinguishing, at least in part, between file-oriented and commit-oriented version control systems. But I think there is more to it than that.



      In my book, which is stalled and might never get finished, I tried to come up with a taxonomy for version control systems. In my taxonomy the term for what we're interested here is the atomicity of the version control system. See what is currently page 22. When a VCS has file-level atomicity, there is in fact a history for each file. The VCS must remember the name of the file and what occurred to it at each point.



      Git doesn't do that. Git has only a history of commits—the commit is its unit of atomicity, and the history is the set of commits in the repository. What a commit remembers is the data—a whole tree-full of file names and the contents that go with each of those files—plus some metadata: for instance, who made the commit, when, and why, and the internal Git hash ID of the commit's parent commit. (It is this parent, and the directed acycling graph formed by reading all commits and their parents, that is the history in a repository.)



      Note that a VCS can be commit-oriented, yet still store data file-by-file. That's an implementation detail, though sometimes an important one, and Git does not do that either. Instead, each commit records a tree, with the tree object encoding file names, modes (i.e., is this file executable or not?), and a pointer to the actual file content. The content itself is stored independently, in a blob object. Like a commit object, a blob gets a hash ID that is unique to its content—but unlike a commit, which can only appear once, the blob can appear in many commits. So the underlying file content in Git is stored directly as a blob, and then indirectly in a tree object whose hash ID is recorded (directly or indirectly) in the commit object.



      When you ask Git to show you a file's history using:



      git log [--follow] [starting-point] [--] path/to/file


      what Git is really doing is walking the commit history, which is the only history Git has, but not showing you any of these commits unless:



      • the commit is a non-merge commit, and

      • the parent of that commit also has the file, but the content in the parent differs, or the parent of the commit doesn't have the file at all

      (but some of these conditions can be modified via additional git log options, and there's a very difficult to describe side effect called History Simplification that makes Git omit some commits from the history walk entirely). The file history you see here does not exactly exist in the repository, in some sense: instead, it's just a synthetic subset of the real history. You'll get a different "file history" if you use different git log options!






      share|improve this answer

























      • Another thing to add is this allows Git to do things like shallow clones. It just needs to retrieve the head commit and all the blobs it refers to. It doesn't need to recreate files by applying change sets.

        – Wes Toleman
        yesterday











      • @WesToleman: it definitely makes that easier. Mercurial stores deltas, with occasional resets, and while the Mercurial folks intend to add shallow clones there (which is possible due to the "reset" idea), they haven't actually done it yet (because it's more of a technical challenge).

        – torek
        yesterday











      • @torek I have a doubt regarding your description about Git answering a file history request but I think it deserves its own proper question: stackoverflow.com/questions/55616349/…

        – Simón Ramírez Amaya
        yesterday















      76














      I agree with brian m. carlson's answer: Linus is indeed distinguishing, at least in part, between file-oriented and commit-oriented version control systems. But I think there is more to it than that.



      In my book, which is stalled and might never get finished, I tried to come up with a taxonomy for version control systems. In my taxonomy the term for what we're interested here is the atomicity of the version control system. See what is currently page 22. When a VCS has file-level atomicity, there is in fact a history for each file. The VCS must remember the name of the file and what occurred to it at each point.



      Git doesn't do that. Git has only a history of commits—the commit is its unit of atomicity, and the history is the set of commits in the repository. What a commit remembers is the data—a whole tree-full of file names and the contents that go with each of those files—plus some metadata: for instance, who made the commit, when, and why, and the internal Git hash ID of the commit's parent commit. (It is this parent, and the directed acycling graph formed by reading all commits and their parents, that is the history in a repository.)



      Note that a VCS can be commit-oriented, yet still store data file-by-file. That's an implementation detail, though sometimes an important one, and Git does not do that either. Instead, each commit records a tree, with the tree object encoding file names, modes (i.e., is this file executable or not?), and a pointer to the actual file content. The content itself is stored independently, in a blob object. Like a commit object, a blob gets a hash ID that is unique to its content—but unlike a commit, which can only appear once, the blob can appear in many commits. So the underlying file content in Git is stored directly as a blob, and then indirectly in a tree object whose hash ID is recorded (directly or indirectly) in the commit object.



      When you ask Git to show you a file's history using:



      git log [--follow] [starting-point] [--] path/to/file


      what Git is really doing is walking the commit history, which is the only history Git has, but not showing you any of these commits unless:



      • the commit is a non-merge commit, and

      • the parent of that commit also has the file, but the content in the parent differs, or the parent of the commit doesn't have the file at all

      (but some of these conditions can be modified via additional git log options, and there's a very difficult to describe side effect called History Simplification that makes Git omit some commits from the history walk entirely). The file history you see here does not exactly exist in the repository, in some sense: instead, it's just a synthetic subset of the real history. You'll get a different "file history" if you use different git log options!






      share|improve this answer

























      • Another thing to add is this allows Git to do things like shallow clones. It just needs to retrieve the head commit and all the blobs it refers to. It doesn't need to recreate files by applying change sets.

        – Wes Toleman
        yesterday











      • @WesToleman: it definitely makes that easier. Mercurial stores deltas, with occasional resets, and while the Mercurial folks intend to add shallow clones there (which is possible due to the "reset" idea), they haven't actually done it yet (because it's more of a technical challenge).

        – torek
        yesterday











      • @torek I have a doubt regarding your description about Git answering a file history request but I think it deserves its own proper question: stackoverflow.com/questions/55616349/…

        – Simón Ramírez Amaya
        yesterday













      76












      76








      76







      I agree with brian m. carlson's answer: Linus is indeed distinguishing, at least in part, between file-oriented and commit-oriented version control systems. But I think there is more to it than that.



      In my book, which is stalled and might never get finished, I tried to come up with a taxonomy for version control systems. In my taxonomy the term for what we're interested here is the atomicity of the version control system. See what is currently page 22. When a VCS has file-level atomicity, there is in fact a history for each file. The VCS must remember the name of the file and what occurred to it at each point.



      Git doesn't do that. Git has only a history of commits—the commit is its unit of atomicity, and the history is the set of commits in the repository. What a commit remembers is the data—a whole tree-full of file names and the contents that go with each of those files—plus some metadata: for instance, who made the commit, when, and why, and the internal Git hash ID of the commit's parent commit. (It is this parent, and the directed acycling graph formed by reading all commits and their parents, that is the history in a repository.)



      Note that a VCS can be commit-oriented, yet still store data file-by-file. That's an implementation detail, though sometimes an important one, and Git does not do that either. Instead, each commit records a tree, with the tree object encoding file names, modes (i.e., is this file executable or not?), and a pointer to the actual file content. The content itself is stored independently, in a blob object. Like a commit object, a blob gets a hash ID that is unique to its content—but unlike a commit, which can only appear once, the blob can appear in many commits. So the underlying file content in Git is stored directly as a blob, and then indirectly in a tree object whose hash ID is recorded (directly or indirectly) in the commit object.



      When you ask Git to show you a file's history using:



      git log [--follow] [starting-point] [--] path/to/file


      what Git is really doing is walking the commit history, which is the only history Git has, but not showing you any of these commits unless:



      • the commit is a non-merge commit, and

      • the parent of that commit also has the file, but the content in the parent differs, or the parent of the commit doesn't have the file at all

      (but some of these conditions can be modified via additional git log options, and there's a very difficult to describe side effect called History Simplification that makes Git omit some commits from the history walk entirely). The file history you see here does not exactly exist in the repository, in some sense: instead, it's just a synthetic subset of the real history. You'll get a different "file history" if you use different git log options!






      share|improve this answer















      I agree with brian m. carlson's answer: Linus is indeed distinguishing, at least in part, between file-oriented and commit-oriented version control systems. But I think there is more to it than that.



      In my book, which is stalled and might never get finished, I tried to come up with a taxonomy for version control systems. In my taxonomy the term for what we're interested here is the atomicity of the version control system. See what is currently page 22. When a VCS has file-level atomicity, there is in fact a history for each file. The VCS must remember the name of the file and what occurred to it at each point.



      Git doesn't do that. Git has only a history of commits—the commit is its unit of atomicity, and the history is the set of commits in the repository. What a commit remembers is the data—a whole tree-full of file names and the contents that go with each of those files—plus some metadata: for instance, who made the commit, when, and why, and the internal Git hash ID of the commit's parent commit. (It is this parent, and the directed acycling graph formed by reading all commits and their parents, that is the history in a repository.)



      Note that a VCS can be commit-oriented, yet still store data file-by-file. That's an implementation detail, though sometimes an important one, and Git does not do that either. Instead, each commit records a tree, with the tree object encoding file names, modes (i.e., is this file executable or not?), and a pointer to the actual file content. The content itself is stored independently, in a blob object. Like a commit object, a blob gets a hash ID that is unique to its content—but unlike a commit, which can only appear once, the blob can appear in many commits. So the underlying file content in Git is stored directly as a blob, and then indirectly in a tree object whose hash ID is recorded (directly or indirectly) in the commit object.



      When you ask Git to show you a file's history using:



      git log [--follow] [starting-point] [--] path/to/file


      what Git is really doing is walking the commit history, which is the only history Git has, but not showing you any of these commits unless:



      • the commit is a non-merge commit, and

      • the parent of that commit also has the file, but the content in the parent differs, or the parent of the commit doesn't have the file at all

      (but some of these conditions can be modified via additional git log options, and there's a very difficult to describe side effect called History Simplification that makes Git omit some commits from the history walk entirely). The file history you see here does not exactly exist in the repository, in some sense: instead, it's just a synthetic subset of the real history. You'll get a different "file history" if you use different git log options!







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited yesterday









      Tim Castelijns

      32k1292113




      32k1292113










      answered 2 days ago









      torektorek

      200k18251332




      200k18251332












      • Another thing to add is this allows Git to do things like shallow clones. It just needs to retrieve the head commit and all the blobs it refers to. It doesn't need to recreate files by applying change sets.

        – Wes Toleman
        yesterday











      • @WesToleman: it definitely makes that easier. Mercurial stores deltas, with occasional resets, and while the Mercurial folks intend to add shallow clones there (which is possible due to the "reset" idea), they haven't actually done it yet (because it's more of a technical challenge).

        – torek
        yesterday











      • @torek I have a doubt regarding your description about Git answering a file history request but I think it deserves its own proper question: stackoverflow.com/questions/55616349/…

        – Simón Ramírez Amaya
        yesterday

















      • Another thing to add is this allows Git to do things like shallow clones. It just needs to retrieve the head commit and all the blobs it refers to. It doesn't need to recreate files by applying change sets.

        – Wes Toleman
        yesterday











      • @WesToleman: it definitely makes that easier. Mercurial stores deltas, with occasional resets, and while the Mercurial folks intend to add shallow clones there (which is possible due to the "reset" idea), they haven't actually done it yet (because it's more of a technical challenge).

        – torek
        yesterday











      • @torek I have a doubt regarding your description about Git answering a file history request but I think it deserves its own proper question: stackoverflow.com/questions/55616349/…

        – Simón Ramírez Amaya
        yesterday
















      Another thing to add is this allows Git to do things like shallow clones. It just needs to retrieve the head commit and all the blobs it refers to. It doesn't need to recreate files by applying change sets.

      – Wes Toleman
      yesterday





      Another thing to add is this allows Git to do things like shallow clones. It just needs to retrieve the head commit and all the blobs it refers to. It doesn't need to recreate files by applying change sets.

      – Wes Toleman
      yesterday













      @WesToleman: it definitely makes that easier. Mercurial stores deltas, with occasional resets, and while the Mercurial folks intend to add shallow clones there (which is possible due to the "reset" idea), they haven't actually done it yet (because it's more of a technical challenge).

      – torek
      yesterday





      @WesToleman: it definitely makes that easier. Mercurial stores deltas, with occasional resets, and while the Mercurial folks intend to add shallow clones there (which is possible due to the "reset" idea), they haven't actually done it yet (because it's more of a technical challenge).

      – torek
      yesterday













      @torek I have a doubt regarding your description about Git answering a file history request but I think it deserves its own proper question: stackoverflow.com/questions/55616349/…

      – Simón Ramírez Amaya
      yesterday





      @torek I have a doubt regarding your description about Git answering a file history request but I think it deserves its own proper question: stackoverflow.com/questions/55616349/…

      – Simón Ramírez Amaya
      yesterday











      5














      "git does not track files" basically means that git's commits consist of a file tree snapshot connecting a path in the tree to a "blob" and a commit graph tracking the history of commits. Everything else is reconstructed on-the-fly by commands like "git log" and "git blame". This reconstruction can be told via various options how hard it should look for file-based changes. The default heuristics can determine when a blob changes place in the file tree without change, or when a file is associated with a different blob than before. The compression mechanisms Git uses don't care a whole lot about blob/file boundaries. If the content is somewhere already, this will keep the repository growth small without associating the various blobs.



      Now that is the repository. Git also has a working tree, and in this working tree there are tracked and untracked files. Only the tracked files are recorded in the index (staging area? cache?) and only what is tracked there makes it into the repository.



      The index is file-oriented and there are some file-oriented commands for manipulating it. But what ends up in the repository is just commits in the form of file tree snapshots and the associated blob data and the commit's ancestors.



      Since Git does not track file histories and renames and its efficiency does not depend on them, sometimes you have to try a few times with different options until Git produces the history/diffs/blames you are interested in for non-trivial histories.



      That's different with systems like Subversion which record rather than reconstruct histories. If it's not on record, you don't get to hear about it.



      I actually built a differential installer at one time that just compared release trees by checking them into Git and then producing a script duplicating their effect. Since sometimes whole trees were moved, this produced much smaller differential installers than overwriting/deleting everything would have produced.






      share|improve this answer



























        5














        "git does not track files" basically means that git's commits consist of a file tree snapshot connecting a path in the tree to a "blob" and a commit graph tracking the history of commits. Everything else is reconstructed on-the-fly by commands like "git log" and "git blame". This reconstruction can be told via various options how hard it should look for file-based changes. The default heuristics can determine when a blob changes place in the file tree without change, or when a file is associated with a different blob than before. The compression mechanisms Git uses don't care a whole lot about blob/file boundaries. If the content is somewhere already, this will keep the repository growth small without associating the various blobs.



        Now that is the repository. Git also has a working tree, and in this working tree there are tracked and untracked files. Only the tracked files are recorded in the index (staging area? cache?) and only what is tracked there makes it into the repository.



        The index is file-oriented and there are some file-oriented commands for manipulating it. But what ends up in the repository is just commits in the form of file tree snapshots and the associated blob data and the commit's ancestors.



        Since Git does not track file histories and renames and its efficiency does not depend on them, sometimes you have to try a few times with different options until Git produces the history/diffs/blames you are interested in for non-trivial histories.



        That's different with systems like Subversion which record rather than reconstruct histories. If it's not on record, you don't get to hear about it.



        I actually built a differential installer at one time that just compared release trees by checking them into Git and then producing a script duplicating their effect. Since sometimes whole trees were moved, this produced much smaller differential installers than overwriting/deleting everything would have produced.






        share|improve this answer

























          5












          5








          5







          "git does not track files" basically means that git's commits consist of a file tree snapshot connecting a path in the tree to a "blob" and a commit graph tracking the history of commits. Everything else is reconstructed on-the-fly by commands like "git log" and "git blame". This reconstruction can be told via various options how hard it should look for file-based changes. The default heuristics can determine when a blob changes place in the file tree without change, or when a file is associated with a different blob than before. The compression mechanisms Git uses don't care a whole lot about blob/file boundaries. If the content is somewhere already, this will keep the repository growth small without associating the various blobs.



          Now that is the repository. Git also has a working tree, and in this working tree there are tracked and untracked files. Only the tracked files are recorded in the index (staging area? cache?) and only what is tracked there makes it into the repository.



          The index is file-oriented and there are some file-oriented commands for manipulating it. But what ends up in the repository is just commits in the form of file tree snapshots and the associated blob data and the commit's ancestors.



          Since Git does not track file histories and renames and its efficiency does not depend on them, sometimes you have to try a few times with different options until Git produces the history/diffs/blames you are interested in for non-trivial histories.



          That's different with systems like Subversion which record rather than reconstruct histories. If it's not on record, you don't get to hear about it.



          I actually built a differential installer at one time that just compared release trees by checking them into Git and then producing a script duplicating their effect. Since sometimes whole trees were moved, this produced much smaller differential installers than overwriting/deleting everything would have produced.






          share|improve this answer













          "git does not track files" basically means that git's commits consist of a file tree snapshot connecting a path in the tree to a "blob" and a commit graph tracking the history of commits. Everything else is reconstructed on-the-fly by commands like "git log" and "git blame". This reconstruction can be told via various options how hard it should look for file-based changes. The default heuristics can determine when a blob changes place in the file tree without change, or when a file is associated with a different blob than before. The compression mechanisms Git uses don't care a whole lot about blob/file boundaries. If the content is somewhere already, this will keep the repository growth small without associating the various blobs.



          Now that is the repository. Git also has a working tree, and in this working tree there are tracked and untracked files. Only the tracked files are recorded in the index (staging area? cache?) and only what is tracked there makes it into the repository.



          The index is file-oriented and there are some file-oriented commands for manipulating it. But what ends up in the repository is just commits in the form of file tree snapshots and the associated blob data and the commit's ancestors.



          Since Git does not track file histories and renames and its efficiency does not depend on them, sometimes you have to try a few times with different options until Git produces the history/diffs/blames you are interested in for non-trivial histories.



          That's different with systems like Subversion which record rather than reconstruct histories. If it's not on record, you don't get to hear about it.



          I actually built a differential installer at one time that just compared release trees by checking them into Git and then producing a script duplicating their effect. Since sometimes whole trees were moved, this produced much smaller differential installers than overwriting/deleting everything would have produced.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered yesterday







          user11341543




























              3














              The confusing bit is here:




              Git never ever sees those as individual files. Git thinks everything as the full content.




              Git often uses 160 bit hashes in place of objects in its own repo. A tree of files is basically a list of names and hashes associated with the content of each (plus some metadata).



              But the 160 bit hash uniquely identifies the content (within the universe of the git database). So a tree with hashes as content includes the content in its state.



              If you change the state of the content of a file, its hash changes. But if its hash changes, the hash associated with the file name's content also changes. Which in turn changes the hash of the "directory tree".



              When a git database stores a directory tree, that directory tree implies and includes all of the content of all of the subdirectories and all of the files in it.



              It is organized in a tree structure with (immutable, reusable) pointers to blobs or other trees, but logically it is a single snapshot of the entire content of the entire tree. The representation in the git database isn't the flat data contents, but logically it is all of its data and nothing else.



              If you serialized the tree to a filesystem, deleted all .git folders, and told git to add the tree back into its database, you'd end up with adding nothing to the database -- the element would already be there.



              It may help to think of git's hashes as a reference counted pointer to immutable data.



              If you built an application around that, a document is a bunch of pages, which have layers, which have groups, which have objects.



              When you want to change an object, you have to create a completely new group for it. If you want to change a group, you have to create a new layer, which needs a new page, which needs a new document.



              Every time you change a single object, it spawns a new document. The old document continues to exist. The new and old document share most of their content -- they have the same pages (except 1). That one page has the same layers (except 1). That layer has the same groups (except 1). That group has the same objects (except 1).



              And by same, I mean logically a copy, but implementation-wise it is just another reference counted pointer to the same immutable object.



              A git repo is a lot like that.



              This means that a given git changeset contains its commit message (as a hash code), it contains its work tree, and it contains its parent changes.



              Those parent changes contain their parent changes, all the way back.



              The part of the git repo that contains history is that chain of changes. That chain of changes it at a level above the "directory" tree -- from a "directory" tree, you cannot uniquely get to a change set and the chain of changes.



              To find out what happens to a file, you start with that file in a changeset. That changeset has a history. Often in that history, the same named file exists, sometimes with the same content. If the content is the same, there was no change to the file. If it is different, there is a change, and work needs to be done to work out exactly what.



              Sometimes the file is gone; but, the "directory" tree might have another file with the same content (same hash code), so we can track it that way (note; this is why you want a commit-to-move a file separate from a commit-to-edit). Or the same file name, and after checking the file is similar enough.



              So git can patchwork together a "file history".



              But this file history comes from efficient parsing of the "entire changeset", not from a link from one version of the file to another.






              share|improve this answer



























                3














                The confusing bit is here:




                Git never ever sees those as individual files. Git thinks everything as the full content.




                Git often uses 160 bit hashes in place of objects in its own repo. A tree of files is basically a list of names and hashes associated with the content of each (plus some metadata).



                But the 160 bit hash uniquely identifies the content (within the universe of the git database). So a tree with hashes as content includes the content in its state.



                If you change the state of the content of a file, its hash changes. But if its hash changes, the hash associated with the file name's content also changes. Which in turn changes the hash of the "directory tree".



                When a git database stores a directory tree, that directory tree implies and includes all of the content of all of the subdirectories and all of the files in it.



                It is organized in a tree structure with (immutable, reusable) pointers to blobs or other trees, but logically it is a single snapshot of the entire content of the entire tree. The representation in the git database isn't the flat data contents, but logically it is all of its data and nothing else.



                If you serialized the tree to a filesystem, deleted all .git folders, and told git to add the tree back into its database, you'd end up with adding nothing to the database -- the element would already be there.



                It may help to think of git's hashes as a reference counted pointer to immutable data.



                If you built an application around that, a document is a bunch of pages, which have layers, which have groups, which have objects.



                When you want to change an object, you have to create a completely new group for it. If you want to change a group, you have to create a new layer, which needs a new page, which needs a new document.



                Every time you change a single object, it spawns a new document. The old document continues to exist. The new and old document share most of their content -- they have the same pages (except 1). That one page has the same layers (except 1). That layer has the same groups (except 1). That group has the same objects (except 1).



                And by same, I mean logically a copy, but implementation-wise it is just another reference counted pointer to the same immutable object.



                A git repo is a lot like that.



                This means that a given git changeset contains its commit message (as a hash code), it contains its work tree, and it contains its parent changes.



                Those parent changes contain their parent changes, all the way back.



                The part of the git repo that contains history is that chain of changes. That chain of changes it at a level above the "directory" tree -- from a "directory" tree, you cannot uniquely get to a change set and the chain of changes.



                To find out what happens to a file, you start with that file in a changeset. That changeset has a history. Often in that history, the same named file exists, sometimes with the same content. If the content is the same, there was no change to the file. If it is different, there is a change, and work needs to be done to work out exactly what.



                Sometimes the file is gone; but, the "directory" tree might have another file with the same content (same hash code), so we can track it that way (note; this is why you want a commit-to-move a file separate from a commit-to-edit). Or the same file name, and after checking the file is similar enough.



                So git can patchwork together a "file history".



                But this file history comes from efficient parsing of the "entire changeset", not from a link from one version of the file to another.






                share|improve this answer

























                  3












                  3








                  3







                  The confusing bit is here:




                  Git never ever sees those as individual files. Git thinks everything as the full content.




                  Git often uses 160 bit hashes in place of objects in its own repo. A tree of files is basically a list of names and hashes associated with the content of each (plus some metadata).



                  But the 160 bit hash uniquely identifies the content (within the universe of the git database). So a tree with hashes as content includes the content in its state.



                  If you change the state of the content of a file, its hash changes. But if its hash changes, the hash associated with the file name's content also changes. Which in turn changes the hash of the "directory tree".



                  When a git database stores a directory tree, that directory tree implies and includes all of the content of all of the subdirectories and all of the files in it.



                  It is organized in a tree structure with (immutable, reusable) pointers to blobs or other trees, but logically it is a single snapshot of the entire content of the entire tree. The representation in the git database isn't the flat data contents, but logically it is all of its data and nothing else.



                  If you serialized the tree to a filesystem, deleted all .git folders, and told git to add the tree back into its database, you'd end up with adding nothing to the database -- the element would already be there.



                  It may help to think of git's hashes as a reference counted pointer to immutable data.



                  If you built an application around that, a document is a bunch of pages, which have layers, which have groups, which have objects.



                  When you want to change an object, you have to create a completely new group for it. If you want to change a group, you have to create a new layer, which needs a new page, which needs a new document.



                  Every time you change a single object, it spawns a new document. The old document continues to exist. The new and old document share most of their content -- they have the same pages (except 1). That one page has the same layers (except 1). That layer has the same groups (except 1). That group has the same objects (except 1).



                  And by same, I mean logically a copy, but implementation-wise it is just another reference counted pointer to the same immutable object.



                  A git repo is a lot like that.



                  This means that a given git changeset contains its commit message (as a hash code), it contains its work tree, and it contains its parent changes.



                  Those parent changes contain their parent changes, all the way back.



                  The part of the git repo that contains history is that chain of changes. That chain of changes it at a level above the "directory" tree -- from a "directory" tree, you cannot uniquely get to a change set and the chain of changes.



                  To find out what happens to a file, you start with that file in a changeset. That changeset has a history. Often in that history, the same named file exists, sometimes with the same content. If the content is the same, there was no change to the file. If it is different, there is a change, and work needs to be done to work out exactly what.



                  Sometimes the file is gone; but, the "directory" tree might have another file with the same content (same hash code), so we can track it that way (note; this is why you want a commit-to-move a file separate from a commit-to-edit). Or the same file name, and after checking the file is similar enough.



                  So git can patchwork together a "file history".



                  But this file history comes from efficient parsing of the "entire changeset", not from a link from one version of the file to another.






                  share|improve this answer













                  The confusing bit is here:




                  Git never ever sees those as individual files. Git thinks everything as the full content.




                  Git often uses 160 bit hashes in place of objects in its own repo. A tree of files is basically a list of names and hashes associated with the content of each (plus some metadata).



                  But the 160 bit hash uniquely identifies the content (within the universe of the git database). So a tree with hashes as content includes the content in its state.



                  If you change the state of the content of a file, its hash changes. But if its hash changes, the hash associated with the file name's content also changes. Which in turn changes the hash of the "directory tree".



                  When a git database stores a directory tree, that directory tree implies and includes all of the content of all of the subdirectories and all of the files in it.



                  It is organized in a tree structure with (immutable, reusable) pointers to blobs or other trees, but logically it is a single snapshot of the entire content of the entire tree. The representation in the git database isn't the flat data contents, but logically it is all of its data and nothing else.



                  If you serialized the tree to a filesystem, deleted all .git folders, and told git to add the tree back into its database, you'd end up with adding nothing to the database -- the element would already be there.



                  It may help to think of git's hashes as a reference counted pointer to immutable data.



                  If you built an application around that, a document is a bunch of pages, which have layers, which have groups, which have objects.



                  When you want to change an object, you have to create a completely new group for it. If you want to change a group, you have to create a new layer, which needs a new page, which needs a new document.



                  Every time you change a single object, it spawns a new document. The old document continues to exist. The new and old document share most of their content -- they have the same pages (except 1). That one page has the same layers (except 1). That layer has the same groups (except 1). That group has the same objects (except 1).



                  And by same, I mean logically a copy, but implementation-wise it is just another reference counted pointer to the same immutable object.



                  A git repo is a lot like that.



                  This means that a given git changeset contains its commit message (as a hash code), it contains its work tree, and it contains its parent changes.



                  Those parent changes contain their parent changes, all the way back.



                  The part of the git repo that contains history is that chain of changes. That chain of changes it at a level above the "directory" tree -- from a "directory" tree, you cannot uniquely get to a change set and the chain of changes.



                  To find out what happens to a file, you start with that file in a changeset. That changeset has a history. Often in that history, the same named file exists, sometimes with the same content. If the content is the same, there was no change to the file. If it is different, there is a change, and work needs to be done to work out exactly what.



                  Sometimes the file is gone; but, the "directory" tree might have another file with the same content (same hash code), so we can track it that way (note; this is why you want a commit-to-move a file separate from a commit-to-edit). Or the same file name, and after checking the file is similar enough.



                  So git can patchwork together a "file history".



                  But this file history comes from efficient parsing of the "entire changeset", not from a link from one version of the file to another.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered yesterday









                  Yakk - Adam NevraumontYakk - Adam Nevraumont

                  189k21199384




                  189k21199384





















                      2














                      Git doesn't track a file directly, but tracks snapshots of the repository, and these snapshots happen to consist of files.



                      Here's a way to look at it.



                      In other version control systems (SVN, Rational ClearCase), you can right click on a file and get its change history.



                      In Git, there is no direct command that does this. See this question. You'll be surprised at how many different answers there are. There is no one simple answer because Git doesn't simply track a file, not in the way that SVN or ClearCase does it.






                      share|improve this answer








                      New contributor




                      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.















                      • 4





                        I think I get what you're trying to say, but "In Git, there is no direct command that does this" is directly contradicted by the answers to the question you've linked to. While it's true that versioning happens at the level of the whole repository, there are typically loads of ways to achieve anything in Git, so having multiple commands to show a file's history isn't evidence of much.

                        – Joe Lee-Moyet
                        yesterday












                      • I skimmed the first few answers of the question you linked and all of them use git log or some program built on top of that (or some alias that does the same thing). But even if there were lots of different ways, as Joe says that's also true for showing branch history. (also git log -p <file> is built in and does exactly that)

                        – Voo
                        yesterday












                      • Are you sure that SVN internally stores changes per file? I haven't used it in some time already, but I vaguely remember having files named like version ids, rather than reflection of project file structure.

                        – Artur Biesiadowski
                        16 hours ago















                      2














                      Git doesn't track a file directly, but tracks snapshots of the repository, and these snapshots happen to consist of files.



                      Here's a way to look at it.



                      In other version control systems (SVN, Rational ClearCase), you can right click on a file and get its change history.



                      In Git, there is no direct command that does this. See this question. You'll be surprised at how many different answers there are. There is no one simple answer because Git doesn't simply track a file, not in the way that SVN or ClearCase does it.






                      share|improve this answer








                      New contributor




                      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.















                      • 4





                        I think I get what you're trying to say, but "In Git, there is no direct command that does this" is directly contradicted by the answers to the question you've linked to. While it's true that versioning happens at the level of the whole repository, there are typically loads of ways to achieve anything in Git, so having multiple commands to show a file's history isn't evidence of much.

                        – Joe Lee-Moyet
                        yesterday












                      • I skimmed the first few answers of the question you linked and all of them use git log or some program built on top of that (or some alias that does the same thing). But even if there were lots of different ways, as Joe says that's also true for showing branch history. (also git log -p <file> is built in and does exactly that)

                        – Voo
                        yesterday












                      • Are you sure that SVN internally stores changes per file? I haven't used it in some time already, but I vaguely remember having files named like version ids, rather than reflection of project file structure.

                        – Artur Biesiadowski
                        16 hours ago













                      2












                      2








                      2







                      Git doesn't track a file directly, but tracks snapshots of the repository, and these snapshots happen to consist of files.



                      Here's a way to look at it.



                      In other version control systems (SVN, Rational ClearCase), you can right click on a file and get its change history.



                      In Git, there is no direct command that does this. See this question. You'll be surprised at how many different answers there are. There is no one simple answer because Git doesn't simply track a file, not in the way that SVN or ClearCase does it.






                      share|improve this answer








                      New contributor




                      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.










                      Git doesn't track a file directly, but tracks snapshots of the repository, and these snapshots happen to consist of files.



                      Here's a way to look at it.



                      In other version control systems (SVN, Rational ClearCase), you can right click on a file and get its change history.



                      In Git, there is no direct command that does this. See this question. You'll be surprised at how many different answers there are. There is no one simple answer because Git doesn't simply track a file, not in the way that SVN or ClearCase does it.







                      share|improve this answer








                      New contributor




                      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.









                      share|improve this answer



                      share|improve this answer






                      New contributor




                      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.









                      answered yesterday









                      Double Vision Stout Fat HeavyDouble Vision Stout Fat Heavy

                      372




                      372




                      New contributor




                      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.





                      New contributor





                      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.






                      Double Vision Stout Fat Heavy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.







                      • 4





                        I think I get what you're trying to say, but "In Git, there is no direct command that does this" is directly contradicted by the answers to the question you've linked to. While it's true that versioning happens at the level of the whole repository, there are typically loads of ways to achieve anything in Git, so having multiple commands to show a file's history isn't evidence of much.

                        – Joe Lee-Moyet
                        yesterday












                      • I skimmed the first few answers of the question you linked and all of them use git log or some program built on top of that (or some alias that does the same thing). But even if there were lots of different ways, as Joe says that's also true for showing branch history. (also git log -p <file> is built in and does exactly that)

                        – Voo
                        yesterday












                      • Are you sure that SVN internally stores changes per file? I haven't used it in some time already, but I vaguely remember having files named like version ids, rather than reflection of project file structure.

                        – Artur Biesiadowski
                        16 hours ago












                      • 4





                        I think I get what you're trying to say, but "In Git, there is no direct command that does this" is directly contradicted by the answers to the question you've linked to. While it's true that versioning happens at the level of the whole repository, there are typically loads of ways to achieve anything in Git, so having multiple commands to show a file's history isn't evidence of much.

                        – Joe Lee-Moyet
                        yesterday












                      • I skimmed the first few answers of the question you linked and all of them use git log or some program built on top of that (or some alias that does the same thing). But even if there were lots of different ways, as Joe says that's also true for showing branch history. (also git log -p <file> is built in and does exactly that)

                        – Voo
                        yesterday












                      • Are you sure that SVN internally stores changes per file? I haven't used it in some time already, but I vaguely remember having files named like version ids, rather than reflection of project file structure.

                        – Artur Biesiadowski
                        16 hours ago







                      4




                      4





                      I think I get what you're trying to say, but "In Git, there is no direct command that does this" is directly contradicted by the answers to the question you've linked to. While it's true that versioning happens at the level of the whole repository, there are typically loads of ways to achieve anything in Git, so having multiple commands to show a file's history isn't evidence of much.

                      – Joe Lee-Moyet
                      yesterday






                      I think I get what you're trying to say, but "In Git, there is no direct command that does this" is directly contradicted by the answers to the question you've linked to. While it's true that versioning happens at the level of the whole repository, there are typically loads of ways to achieve anything in Git, so having multiple commands to show a file's history isn't evidence of much.

                      – Joe Lee-Moyet
                      yesterday














                      I skimmed the first few answers of the question you linked and all of them use git log or some program built on top of that (or some alias that does the same thing). But even if there were lots of different ways, as Joe says that's also true for showing branch history. (also git log -p <file> is built in and does exactly that)

                      – Voo
                      yesterday






                      I skimmed the first few answers of the question you linked and all of them use git log or some program built on top of that (or some alias that does the same thing). But even if there were lots of different ways, as Joe says that's also true for showing branch history. (also git log -p <file> is built in and does exactly that)

                      – Voo
                      yesterday














                      Are you sure that SVN internally stores changes per file? I haven't used it in some time already, but I vaguely remember having files named like version ids, rather than reflection of project file structure.

                      – Artur Biesiadowski
                      16 hours ago





                      Are you sure that SVN internally stores changes per file? I haven't used it in some time already, but I vaguely remember having files named like version ids, rather than reflection of project file structure.

                      – Artur Biesiadowski
                      16 hours ago

















                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55602748%2fwhat-does-linus-torvalds-mean-when-he-says-that-git-never-ever-tracks-a-file%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      -git, version-control

                      Popular posts from this blog

                      Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

                      Frič See also Navigation menuinternal link

                      Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant