git config user.name “New Username” git config user.email “newemail@example.com”
git config –global user.name “New Global Username” git config –global user.email “newglobal@email.com”
cd day28 git init git remote add origin https://gitee.com/wupeiqi/day28.git
git add . git commit -m 'init' git checkout -b master git push origin master
git push MyMusicAPI master git push MyMusicAPI master --force
git status git log
git reset --hard e65ec665eb7b93eb157f5e902570b1a83508953a
git reflog
git reset --hard c4d3428
git branch git branch dev git checkout dev git merge bug
git branch -d bug
git clone https://user:ghp_<GithubToken申请>@github.com/xxxxx/xxxxx.git
|