i was wondering how to change the order of my commits on git (priority of versions), or to define a commit as "default" for cloning ?
For example, i've three commits for my git project :
-s0441254z5 | "new features in dev" (most recent)
-p44mo47877 | "ENDED project"
-g487er54ee | "First commit" (the oldest)
I would have
-p44mo47877 | "ENDED project"
-s0441254z5 | "new features in dev" (most recent)
-g487er54ee | "First commit" (the oldest)
so when someone do "git clone" on my project, he gets the "ENDED project". I know i could answer this example with another way, using --branches, but it's just an example to illustrate my question. So what do you think about this?