Комментарии:
1st comment..
I mean commit..
wait I need to revert that
Git has some very interesting tools... if you know how to use them.
Perhaps a video on underused git commands?
PS: I don't really type git commands these days, it's builtin GUI is more than enough.
We don't make mistakes, just happy little accidents. Citation from Bob Ross.
This is for you Chris since you make our miserable lifes happy again with the help you provide.
What is the font you are using on Brave?
ОтветитьThe troubleshooters are broke after using WinUtil , its says "This file does not have an app associated with it for performing this action". How to fix ?
ОтветитьThe website guide is not up yet
ОтветитьHey! I see you in DWM.
ОтветитьCan you make a optimization video for low end pc users like me (for gameing )
ОтветитьI approach any coding I do as being 'Alternatively Correct' from the start, that way I'm prepared for others that question my brilliance.
Great work and vid/vod Chris. I love your openness.
You may now find a whole lot of new comments on your GitHub account. Hope you're ready
I just used your win10 app, it's fantastic, just wanted to thank you again. (and all the contributors as well)
ОтветитьYou sound like Nick Kroll 😲😲😲
ОтветитьDev and release branch rather than test and main. Make dev the default branch so all PR go to this and only ocassionally forward release branch. What about this approach?
ОтветитьChris, I am glad you kept the promise to yourself. In past video about Github you talked how you wanna work and post stuff. That is really some commitment! Thank you for these tricks. Nice video like always.
ОтветитьWait I can just add softwear I or other could want by just adding it to the test branch>?
ОтветитьOne thing I learned about GitHub is that you can't name a branch a slur lol
Ответитьfor git merging and rollbacks and all those things i dont really like to use github desktop, i always use a more advanced tool like git extension, git kraken etc.. those tools give at least for me a way better understanding of whats going on by giving more options and visualizations.
ОтветитьHey Chris!
Is there anywhere for us to donate? Your tool improved the way I use windows and I really appreciate that. I'm a Linux user and it made it a lot more bearable than it was before to use it (I am also forced to because of my career :D)
Instead of merging the old branch into the staging branch, you could have used "cherry pick".
Another thing you could do too was "git stash", it would put all the project work in a "box", then you would pull the test branch to update and use "git stash pop". This way, the changes would be placed at the top of the updated test branch.
Glad to see I'm not the only one who struggles with rebasing. Began working last year and to this day, it's the bane of my existence.
ОтветитьKeep it up 👍👍👍
ОтветитьWhen it comes to "rolling back commits" - personally (which is based on both experiences with multiple teams as well as Google/Facebook as described on the site trunkbaseddevelopment - although I would go for the "scaled trunk-based development" workflow even for smaller teams, see below), I would strongly recommend not messing with the git history any more than absolutely necessary.
(Generally) have one protected main branch and no other long-lived branches.
Work based off of main being the source of truth that is always up to date. Having tests fail on it (which I regularly see on popular OSS...) should not be acceptable. It has to be rock solid.
If, despite this, a mistake is made, well... it depends on what the release workflow and rollback options look like. But if possible, I would suggest simply fixing it in a fresh PR that's based on latest master.
I been using gitlens for seeing commit history been helpful but is paid extention for vscode
ОтветитьDoing good! 👍👌
ОтветитьNice!
ОтветитьGosh! I wish I knew programming! This was super interesting! Thanks for sharing!
ОтветитьJetbrains has IDE products with community editions (free), of which I primarily use CLion (commercial version) at work. There git support exceeds anything else I've encountered in GUI/IDE's and I really love the merging interface for conflicts. This alone would justify having one of their IDE's on hand, even if not using it for anything else. Though the other git functionality is superb, and I wish they would extract it into its own GUI app.
ОтветитьWord of advice, dont rely on the automatic conflict resolutions. it may think your new code is actually older, and replace it with the older code. or if you decide to "accept both" it can mess up the order, putting the older code below the new code breaking the logic flow.
I always manually resolve any conflicts and merges because ive been burnt a few times
I wish I just knew how to use github this video was little to no help.
ОтветитьFor branches, create "dev" branch for active development & restrict push access to main branch
Then when releasing a new version just merge "dev" into main
How can i wipe all data in a hard drive in terminal
ОтветитьAlt Title : "How to stop being a scrub and git gud"
ОтветитьThank You! I agree that git and git type software management systems are outstanding. A "for the love of" army of computer affectionados (AKA Nerds/Propeller Heads -- of which I am one) is so heart warming brotherhood/sisterhood. I had a computer career of having fun and getting paid to do so!!!
Ответитьdidn't know i would show up in your video.
glad i did it correct atleast.
thank you for the script, its amazing, and i want to contribute more.
Hey Chris, is there any way to prevent your Windows Tool from messing with the service host grouping? I'm talking about the SvcHostSplitThresholdInKB value, your tool changes the threshold from default 3,5gigs to 32gigs, I personally have a 32gigs memory machine that runs noticably better when windows services are ungrouped, and that changed value puts me right on the line apparently where Windows would group the services into fewer processes. Thank you in advance!
ОтветитьIf you want to download a file, just hold Alt and press RAW
Ответитьhey man, could you do a video talking about the new 23H2?
(especially performance-wise)
your tool first of all is it free and second where do u download it i have looked all over your webgsite
ОтветитьI would recommend using `git switch` to change branches, it's the modern approach and makes far more sense.
Ответитьwinutil is the best thing to ever happen to Windows! Thank you so much for it.
ОтветитьWhat bothers me is that every single time I struggle to find out how to actually download the file.I always get source code and other stuff I don't want.
ОтветитьYou can also install a commit hook which prevents you from committing to master on the command line. You can also set it to protected as well. Both will prevent you as owner to commit directly to that branch.
ОтветитьIs this font change is browser only or whole os? How can i do that?
ОтветитьI don't think we acknowledge and thank enough the contributions that Linus Torvalds did to humanity by sharing Linux and git, specially for making them free and open source...
Ответить