github common use

1.start Synchronize on a new device:

mkdir a new folder
cd
git init
git remote add origin repository site
git pull origin master

2.upload

git add .
git commit -m “notice”
git push -u origin master

3.use without enter password every time:

git bash
git config --global credential.helper store
then pull again and enter again and you will not take it again

4.start with a new device:

visit at: https://blog.csdn.net/wingter92/article/details/77822141

你可能感兴趣的:(学习)