LATEST TRANSMISSIONS

ENCRYPTED // PUBLIC KEY DETECTED

FILTER: TAG [git]
ONLINE
// Z.SHINCHVEN

Create Remote Git Repo from Commandline

Learn how to create a remote Git repository from the command line using "gh" for GitHub and "glab" for GitLab.

// Z.SHINCHVEN

Pull All Git Repositories with a Simple Bash Script

Learn how to pull updates from all Git repositories within a directory using a Bash script.

// Z.SHINCHVEN

Effortlessly Update All Your Git Repositories at Once

Learn how to update all your Git repositories at once with a single command, streamlining your workflow and ensuring that all your projects are up-to-date.

// Z.SHINCHVEN

git-gpt

A GPT-based cli tool to help me manage my git repositories, specifically to help me write better commit messages.

// Z.SHINCHVEN

Syncing iTerm2 Preferences and Profiles Using Git

Learn how to use Git to sync your iTerm2 preferences and profiles across multiple machines.

// Z.SHINCHVEN

Git 生态圈介绍

Git 是一个分布式版本控制系统,主要用于跟踪文件(尤其是代码)的更改。使用 Git,你可以轻松地保存代码的不同版本,合并多人的更改,并且回退到旧版本,如果新版本出现问题。

// Z.SHINCHVEN

Proxy Config for Git

Accessing GitHub becoming harder in less developed country these days, you might need a proxy to do that. Here is how to configure proxy for git. Please edit ~/.gitconfig and add the following lines: …

// Z.SHINCHVEN

Sign Git Revision to Builds to Track Down Issues

Write a build script to sign the git revision to the build. This way, you can track down the exact git revision that the build is based on. ## Get Git revision VERSION=$(git rev-parse HEAD) ## Get da…

// Z.SHINCHVEN

Counting Commits by Author per Day with Git

Introduction In the world of Git, sometimes it becomes necessary to know the contributions of each author over a period of time. This can help in gauging productivity, contributions, or even pinpointi…

// Z.SHINCHVEN

Squash Your Commits

Do You Commit A Lot? When I work on a project, I used to commit every little progress, so that I can feel safe to move forward. But it makes my commit history a mess. However, git provides a few ways …