标签:安装配置 git push pull 连接 git clone config div origin
原文引用https://www.dazhuanlan.com/2019/08/25/5d625c65cd50c/
2019-8-15
git clone url
git config --global user.name "your name"
git config --global user.email "your email address"
git remote add origin https://github.com/smilechenjia/vuepress.git
git init
git add .
git commit -m "注释"
git push --set-upstream origin master
git pull origin master
ssh-keygen -t rsa -C "github用户名"
cat ~/.ssh/id_rsa.pub
把新生成的公钥复制粘贴到这里
git checkout -b branchname
git push origin branchname:branchname
git push origin --delete branchname
标签:安装配置 git push pull 连接 git clone config div origin
原文地址:https://www.cnblogs.com/petewell/p/11408875.html