by digitalnalogika on 8/16/19, 9:57 PM with 24 comments
by mhd on 8/17/19, 9:40 AM
by nemetroid on 8/16/19, 11:26 PM
So I will probably avoid both git restore --staged and git reset --hard (and suggest to others to do the same). I hope git status will keep the hint to use git reset to unstage, even after git-restore becomes stable.
by kissgyorgy on 8/17/19, 7:18 AM
by saagarjha on 8/16/19, 11:27 PM
by tomasyany on 8/17/19, 2:43 AM
I tend to prefer smaller vocabularies tools: less to remember if you know what you are doing.
by Ayesh on 8/18/19, 1:43 AM
It can have new commands:
- `gitlite create` vs `git init`
- `gitlite branch create feature-dom` vs `git checkout -b feature-dom`
- `gitlite time-travel cfae736` vs `git checkout cfae736`.
- `gitlite undo cfae736` vs `git reset cfae736 --hard`
- gitlite release create v4.2` vs `git tag v4.2`.
Each command will call the translated `git` command, and perhaps improve upon the output from the command.