git/git.github.io

Any comment about upcoming Git Rev News edition 114

chriscool opened this issue · 21 comments

A currently mostly empty draft is there:

https://github.com/git/git.github.io/blob/master/rev_news/drafts/edition-114.md

Feel free to comment in this issue, suggest topics, suggest persons to interview, or use the edit button (that looks like a pen) to edit and create a pull request with the changes you would like.

Let's try to publish this edition around the end of August 2024!

Thanks!

cc @jnareb @mjaix @sivaraam @gitster @stepnem

I've been working on a custom git completer and just managed to finish a first pass: carapace-sh/carapace-bin#99
There is still a lot to do and fix (git is a monster, after all), but the main commands work quite well.

Here's a high-level overview of carapace itself: https://pixi.carapace.sh .

@rsteube thanks for the information. @jnareb might add links related to your tool in this edition.

@jnareb, here is an article from the GitLab blog that you might want to link to:

https://about.gitlab.com/blog/2024/08/19/gitlab-now-supports-sha256-repositories/

I haven't been able to identify a candidate and send out the interview mail on time for this edition. I'll try to do it on time for the next one. Feel free to let me know if you have any suggestions on a interview candidates.

To1ne commented

Would it be worth to add the blog post I wrote for MDN: https://developer.mozilla.org/en-US/blog/optimize-your-workflow-git-stash/ ? #shamelessplug

@sivaraam no worries. We know it's difficult to find candidates and it takes time to interview them. And by the way, no, I don't have any candidate suggestion.

@To1ne, thanks for the link suggestion. @jnareb will take a look and decide on it.

bpugh commented

I think this post would be worth adding: https://tekin.co.uk/2024/08/the-many-uses-for-git-patch

jnareb commented

I've been working on a custom git completer and just managed to finish a first pass: carapace-sh/carapace-bin#99 There is still a lot to do and fix (git is a monster, after all), but the main commands work quite well.

Here's a high-level overview of carapace itself: https://pixi.carapace.sh .

Thanks @rsteube ; I have added information about the tool in 27510d1 - please check if I got everything correctly

jnareb commented

@jnareb, here is an article from the GitLab blog that you might want to link to:

https://about.gitlab.com/blog/2024/08/19/gitlab-now-supports-sha256-repositories/

Thanks @chriscool for the suggestion. I have added it in the "Other News > Various" section in 27510d1

jnareb commented

Would it be worth to add the blog post I wrote for MDN: https://developer.mozilla.org/en-US/blog/optimize-your-workflow-git-stash/ ? #shamelessplug

Nice article @To1ne . I have added it in 27510d1 .


Though, for your information, I personally consider git stash push --keep-index to be important functionality that git stash provides, allowing one to test partial commit, i.e. test changes when splitting the commit, or selecting what to include in commit (--keep-index is automatically implied by git stash push --patch, which I did not know about).

There is also merge.autoStash and rebase.autoStash.

jnareb commented

I think this post would be worth adding: https://tekin.co.uk/2024/08/the-many-uses-for-git-patch

Thanks @bpugh , I have added the link to this article in 27510d1

Thanks @rsteube ; I have added information about the tool in 27510d1 - please check if I got everything correctly

@jnareb looks fine

jnareb commented

I have added links to various news (thanks @chriscool ), articles (thanks @To1ne and @bpugh ), sites, and tools (thanks @rsteube ) in 27510d1 .

In a bit of self promotion, I have added information about published second edition of my book "Mastering Git" in 5f5c68b .

bpugh commented

Thanks @jnareb!

Also it's a bit last minute but I have this post I just finished working on: https://www.brandonpugh.com/blog/tips-for-creating-merge-commits/

jnareb commented

Thanks @jnareb!

Also it's a bit last minute but I have this post I just finished working on: https://www.brandonpugh.com/blog/tips-for-creating-merge-commits/

The article looks good, @bpugh . I have added it in 3685987

Thanks @jnareb for the links! Thanks @bpugh for the suggestion!

mjaix commented

Congrats @jnareb on successfully publishing the second edition of your book! 👏

Supplied some more fixes and rephrasings in 84f3348.

Thanks @mjaix !