git的一些操作

客户端向服务器提交的整个过程(一个非常有用的git网站:https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000)

git init
git add *.py
git commit -m "facerec v1"
git remote add origin https://github.com/AbrLiu/facerec.git 让origin指向一个地址,相当于给这个地址起了别名
git remote set-url origin [email protected]:Abrliu/facerec.git
git push -u origin master

猜你喜欢

转载自www.cnblogs.com/ml-cv/p/9107656.html