Skip to content

git

Posted on:August 29, 2023 at 11:23 AM
预计阅读时长:1 min read 字数:75

ssh key-gen

ssh-keygen -t rsa -C "你的邮箱地址"

变更gitignore需要执行

git rm -r --cached .
git add .
git commit -m "change .gitignore"
git push

git check-ignore

git check-ignore -v path/to/check

git cherry-pick

a - b - c - d  Main
         \
          e - f - g  Feature
git checkout Main
git cherry-pick f
a - b - c - d - f  Main
         \
          e - f - g  Feature