Загрузка видео...

Не удалось загрузить видео

На главную

I betcha didn’t know about git add in patch mode!

35,642 просмотров • 2 лет назад •via X (Twitter)

Комментарии: 9

Фото профиля Mark Erikson
Mark Erikson2 лет назад

This is by far the biggest reason I've always preferred using a Git GUI for commits in most cases - the ability to visually pick and choose which hunks (or individual lines) get added, rather than using a TUI. Fork's great. Used to use SourceTree. VS Code's UI is awkward.

Фото профиля Liran Tal
Liran Tal2 лет назад

patch mode is great but how cool that you can do exactly that in VS Code's UI? :-)

Фото профиля Mx Corey Frang
Mx Corey Frang2 лет назад

I almost always use -p. I actually have an alias that tracks new files without adding the lines so -p can catch them I use this step as a sort of self code review and reminder to remove console statements etc before it gets pushed

Фото профиля Andrej Maznevski
Andrej Maznevski2 лет назад

git add -p is quite useful to interactively review and stage changes chunk by chunk. Note: This only stages modifications to existing files, not new files, meaning that they won't be added

Фото профиля Mike Behnke
Mike Behnke2 лет назад

So glad to see this featured! I've been telling coworkers and anyone who will listen about using patch for years. Even have it aliased to `git ap`. Next do `git add -i` (or `--interactive`) for more command line fun, can do patch, but also revert, add files and more.

Фото профиля Andy Hails 👨‍💻
Andy Hails 👨‍💻2 лет назад

"that was my band name in high school" actually made me do a spit take with my coffee! 😂

Фото профиля Kevin Moritz
Kevin Moritz2 лет назад

I did know about it, and once I found out about it I have never gone back.

Фото профиля Sergii Shymko
Sergii Shymko2 лет назад

IntelliJ IDEs allow you to pick and choose which changes to include in a commit. Uncheck the checkbox of unwanted changes from the diff viewer. Using this all the time along with moving some changes out to a separate Change Set.

Фото профиля Joe Attardi
Joe Attardi2 лет назад

Stage this hunk baby

Похожие видео