Mastodon: @canpolat@hachyderm.io
- 201 Posts
- 41 Comments
canpolat@programming.devMto
Git@programming.dev•Git isn't working when i clone, fetch, or pushEnglish
10·1 year agoNot sure but that sounds like you have a problem with your Git installation (or a dependency of Git). Maybe a reinstallation can solve that.
canpolat@programming.devOPMto
Git@programming.dev•How Git Works (zine by Julia Evans)English
3·1 year agoI understand the “why would I pay for this” reaction. I think crowdsourcing is a better approach for these kinds of content. Once you reach certain level of financial commitment from the crowd, you can give away the PDF and sell the print copy.
canpolat@programming.devOPMto
Git@programming.dev•What were your misconceptions about Git when you first started?English
26·1 year agogit branches are just homeomorphic endofunctors mapping submanifolds of a Hilbert space
Yeah, once you realize that everything falls into place.
canpolat@programming.devOPMto
Git@programming.dev•Git alias idea: "git browse" to open repo in browserEnglish
16·2 years agoI believe you can replace
startwith the command that is suitable for your system (e.g.,xdg-openfor linux).
Here is the link to the original website (an NGO that monitors blocked websites in Turkey): https://ifade.org.tr/engelliweb/distrowatch-erisime-engelledi/
And here is the Google translation of the text on that page:
The IP address of the DistroWatch platform, which provides news, reviews, rankings and general information about Linux distributions, was blocked by the National Cyber Incident Response Center (USOM) on the grounds of “IP hosting/spreading malware”.
canpolat@programming.devOPMto
Git@programming.dev•What was your “aha” moment when you finally understood Git?English
3·2 years agoWhat
checkoutactually does. Here is a past comment with links to the courses (they are pay-walled, unfortunately)
canpolat@programming.devOPMto
Git@programming.dev•What was your “aha” moment when you finally understood Git?English
2·2 years agoI don’t think I read that one. I created a separate link-post for that one. Thanks.
canpolat@programming.devOPMto
Git@programming.dev•What was your “aha” moment when you finally understood Git?English
6·2 years agoMine happened when I watched Paolo Perrota’s Git courses on Pluralsight. That’s when it clicked for me.
canpolat@programming.devOPMto
Git@programming.dev•What's the most creative or unconventional use of Git you've encountered?English
12·2 years agoThe URL seems to have a typo. Correct URL is https://github.com/presslabs/gitfs
canpolat@programming.devOPto
Fediverse@lemmy.world•Bluesky opens to public registrationEnglish
17·2 years agoI don’t follow it very closely, but as far as I know, they are the only one implementing the open protocol they designed (which doesn’t interoperate with ActivityPub). However, there seems to be some efforts for creating a bridge: https://www.docs.bsky.app/blog/feature-bridgyfed
As you said, there are some recognizable faces and that may impact the adoption. But not being compatible with ActivityPub is a real bummer.
That’s explained at the end (Revisions). Fowler is probably looking for a general term that can be used to describe this specific way of debugging. Since he is aware of
git bisect(and I’m sure he knows abouthg bisect) there must be a reason he is not preferring “bisect debugging,” for example.Edit: The term
diffhas a clear link with version control.bisectis not that obvious. It may be ambiguous/vague in debugging context. I would still call it “bisect debugging.”
Beginning in Git 2.43, Git will realize when it’s about to perform a double-revert, and instead produce the much more pleasing message
Doesn’t happen very often, but I’m glad we have a better solution to this now.
canpolat@programming.devMto
Git@programming.dev•Trying to setup branch protection rules for the team. Need some help and advice pleaseEnglish
7·2 years agoThis sounds more like a Github question.
Reading the manual? That’s cheating!
canpolat@programming.devOPMto
Git@programming.dev•A successful Git branching modelEnglish
5·2 years agoApart from the historical value, the most important part of this article now is the “Note of reflection” added 10 years after it’s inception:
If your team is doing continuous delivery of software, I would suggest to adopt a much simpler workflow (like GitHub flow) instead of trying to shoehorn git-flow into your team.
I don’t think this work flow is relevant any more even for teams that don’t do CD, to be honest. It was a messy work flow to begin with and I haven’t seen it applied successfully in practice.
canpolat@programming.devMto
Git@programming.dev•[Question] diff specific to document formats?English
1·2 years agoI don’t think Git has built-in support for that, but there seems to be some syntax/language aware diff tools that can be configured as the
difftool.
canpolat@programming.devMto
Git@programming.dev•Is there a web-based git client? [solved, kindof]English
4·2 years agoI see. Good luck with your search. Would be great if you could update the thread once you settle on a solution.
canpolat@programming.devMto
Git@programming.dev•Is there a web-based git client? [solved, kindof]English
5·2 years agoNot sure I understand the use case and why something like VS Code’s Git UI (or some other GUI) cannot solve the problem. Why does it need to be web-based, for example?
I believe there is already a browser add on for this. Cannot remember the name right now.
Edit: I think this should be in Lemmy core.











For us to be able to help you, I think you need to give us some more details about the organization of your work. If each chapter is a separate text file, then you don’t really need to do any branching at all (assuming people will only make changes on their own files and not touch others’ work). If it is a single text file, branching (or anything else, to be honest) will not help much.
I assume chapters will have their separate files. As long as you can control who touches which file, everybody can work on the same branch (also referred to as “trunk based”). But if you fear that people may interfere with each other’s work (willingly or by accident), then it makes sense to create a branch per chapter to keep contributors at a distance from each other. But working on a single repository requires some sort of an agreement on the workflow.