创建git仓库
在公司的gitlab上,进入自己的目录后,新建project
在使用的服务器端生成秘钥
ssh-keygen -t rsa -C "bonnie@futunn.com" -b 4096
拷贝秘钥到gitlab上
在服务器上获取秘钥
在gitlab中添加刚刚生成的秘钥
下载git库到本地
说明:由于服务器无法解析gitlab的目录,需要在windows下通过ping,或许IP地址
将密钥文件添加到本地
不知道为啥 windows每次都要添加,不然无法正常访问
在该目录下增加文件,上传gitlab
cp -ri mysit django_test/
cd django_test/
git config --global user.email "bonnie@futunn.com"
git config --global user.name "bonnie"
git add *
git commit -m "add django test project mysite"
git status
git push origin master
对文件中*.pyc去除版本管理
git rm -r --cached dedicatedLines/*.pyc
将去除的文件提交到本地仓库
git commit -m 'delete pyc document'











网友评论