Configuring GPG to sign Git commits
Learn how to create GPG keys and sign git commits using them.
Git can be configured to ignore some files in your computer or repository you don’t want to track. These files can include log files, .env files that contain sensitive information, files generated automatically by your text editor or build system, or any locally generated files that your team members will not need. You use gitignore …
Whenever you make changes to a bunch of files already tracked by git, there’s an easy way to add them without adding untracked files. The command is: git add –update or git add -u That’s it!
Learn how to count the number of commits or number of lines a contributor has added to a git repository.
Learn how to make git push to the same remote branch name.