Skip to content

Instantly share code, notes, and snippets.

View wakayamasan's full-sized avatar
😶

wakayamasan wakayamasan

😶
View GitHub Profile
@gitaarik
gitaarik / git_submodules.md
Last active July 30, 2024 03:14
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of usecases of submodules:

  • Separate big codebases into multiple repositories.
@evantoli
evantoli / GitConfigHttpProxy.md
Last active July 30, 2024 01:59
Configure Git to use a proxy

Configure Git to use a proxy

In Brief

You may need to configure a proxy server if you're having trouble cloning or fetching from a remote repository or getting an error like unable to access '...' Couldn't resolve host '...'.

Consider something like:

@miguelmota
miguelmota / remove_tuxera.sh
Last active May 26, 2024 20:00
Completely uninstall and remove Tuxera NTFS on MacOS (resets trial version)
sudo rm -rf /Applications/Tuxera\ Disk\ Manager.app
sudo rm -rf /Library/Application\ Support/Tuxera\ NTFS
sudo rm -rf /Library/Filesystems/fusefs_txantfs.fs
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 31, 2024 18:30
Conventional Commits Cheatsheet

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@2niuhe
2niuhe / ubuntu20.04配置.md
Last active December 7, 2022 14:02
Ubuntu20.04配置软件

Ubuntu20一些软件配置记录

换清华源

sudo mv /etc/apt/sources.list /etc/apt/sources.list.bak
#清华源
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse