Best of GitOctober 2020

  1. 1
    Article
    Avatar of ossOpen Source Way·6y

    7 Git tricks that changed my life

    Git is one of the most common version control systems available, and it's used on private systems and publicly hosted websites for all kinds of development work. Here are seven tricks that have changed the way I work with Git. Know your .git folder. Count your commits. Take a backup of untracked files.

  2. 2
    Article
    Avatar of hashnodeHashnode·6y

    13 Git Commands Every Developer Should Know

    Here are 13 Git commands that can speed-up your development workflow and allow you to go from a brand new repository to merging it. I can’t begin to tell you how confused I was when I first started learning Git commands. I’m sure I can list at least a dozen occasions where I was totally confused with Git commands and what they did. That’s why I'm going to share 13 frequently used Git commands in this blog post.

  3. 3
    Article
    Avatar of hashnodeHashnode·6y

    Don't overcomplicate git 🙇‍♂️

    Using Visual Studio Code and the GitHub app, you can commit code without opening your terminal. You can write a commit message and even add a description to the commit. The commit message can then be pushed by clicking the commit button on the left of the application. The commits can be pushed multiple times at once.

  4. 4
    Article
    Avatar of dzDZone·6y

    Best Practices for Using Git

    Git has become ubiquitous as the preferred version control system (VCS) used by developers. With every powerful tool, especially one that involves collaboration with others, it is better to establish conventions to follow. At DeepSource, we’ve put together some guiding principles for our own team that make working with Git easier.

  5. 5
    Article
    Avatar of freecodecampfreeCodeCamp·6y

    How to Use Git Aliases to Increase Your Productivity

    Leonardo Faria: How to Use Git Aliases to Increase Your Productivity. How to use GitAliases to increase your Productivity with these tips and tricks. How do you use Git to increase productivity? Share your tips in the comments below or email us at luardo.faria@mailonline.co.uk.

  6. 6
    Article
    Avatar of hashnodeHashnode·6y

    GitHub signed commits

    The code repository GitHub supports the option of signing changes to the source code by the contributor. Signing Git commits is important because in this age of malicious code and back doors, it helps protect you from an attacker who might otherwise inject malicious code into your codebase. It also helps discourage untrustworthy developers from adding their own back doors to the code.