Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
This sounds to me like someone had a problem once and they've decided upon a somewhat silly way to keep that from ever happening again. The big repository hosts have a different way of addressing ...
Answer
#2: Post edited
- This sounds to me like someone had a problem once and they've decided upon a somewhat silly way to keep that from ever happening again.
The big repository hosts have a different way of addressing it. They (offer to) make you a _README<span>.</span>md_ and a _.gitignore_ for the first commit and you can rebase everything but that.- > 2. You can’t `git reset` back to that initial state.
- If you _really_ want to reset back to literally nothing, just start a new repository.
- > 3. You can’t rebase the initial commit.
And then they show the command you use to do it:- ```sh
- git rebase --interactive --root
- ```
- This sounds to me like someone had a problem once and they've decided upon a somewhat silly way to keep that from ever happening again.
- The big repository hosts have a different way of addressing it. They (offer to) make you a _README<span>.</span>md_ and a _.gitignore_ for the first commit and you can stem everything from that.
- > 2. You can’t `git reset` back to that initial state.
- If you _really_ want to reset back to literally nothing, just start a new repository.
- > 3. You can’t rebase the initial commit.
- The author asserts point 3, but then they immediately show the command you can use to do it:
- ```sh
- git rebase --interactive --root
- ```
#1: Initial revision
This sounds to me like someone had a problem once and they've decided upon a somewhat silly way to keep that from ever happening again. The big repository hosts have a different way of addressing it. They (offer to) make you a _README<span>.</span>md_ and a _.gitignore_ for the first commit and you can rebase everything but that. > 2. You can’t `git reset` back to that initial state. If you _really_ want to reset back to literally nothing, just start a new repository. > 3. You can’t rebase the initial commit. And then they show the command you use to do it: ```sh git rebase --interactive --root ```