赞
踩
1、install gitlab projects plugins
如果遇到“marketplace plugins are not loaded”查看"ubuntu下PyCharm"遇到问题博文。
2、version control 》gitlab》add new gitlab server
安装git
sudo apt-get install git
//切换到你的用户目录
cd ~
//设置邮箱
git config --global user.email "your_email@example.com"
//设置用户名,就是查看git提交记录是看到的名字
git config --global user.name "xxx"
//开始生成密钥
ssh-keygen -t rsa -C "your_email@example.com"
//根据提示一路Enter不要输入密码
cd ~/.ssh (如果没有执行第三步,则不会有这个文件夹);
cat id_rsa.pub 在命令行打开这个文件,会直接输出密钥;
复制,打开gitlab ,点自己头像 >> settings >> SSH and GPG keys >>New SSH key
titile 随便写key里 粘贴第六步的内容;完成。
添加gitignore。先本地删除文件的追踪状态
- # 删除当前文件夹的全部本地缓存
- git rm -r --cached .
重新添加文件追踪。
git add .
最后commit一下,提交即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。