1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| git config --global user.name "xb18" git config --global user.email "450010494@qq.com"
git config user.name git config user.email git config --list --global
ssh-keygen -t rsa -C "XX@XX.com"
git config --global http.proxy 'http://ip:端口号'
ssh -T git@github.com
echo "# bot-pc" >> README.md git init git add README.md git commit -m "first commit" git branch -M main
git remote add origin git@github.com:xb18/bot-pc.git git branch -M main git push -u origin main
git clone http://XXXX git add -A git commit -m "commit message" git branch git checkout test git pull git push git status
|