一、如何将本地新建项目导入到gitLab?
1、通过win+r打开cmd命令窗口,并打开gitLab所对应的项目文件夹,将所提示的命令按顺序输入到cmd命令窗口,即可完成新项目的GitLab上传。如图所示:
2、通过鼠标方式打开要上传的项目,然后鼠标右键点击 Git Bash Here打开命令窗口,进行项目上传。如图所示:
总结
1、如上传过程中,出现别人的GitLab信息,则可能是在新建项目时,由于直接拷贝别人的项目进行修改所导致。解决方法就是删除.git文件夹(或隐身.git文件夹)
2、感兴趣可了解Git GUI Here 与 Git Bash Here 的区别
3、commit时
Run
git config --global user.email “you@example.com”
git config --global user.name “Your Name”
to set your account’s default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got ‘tim@newton.(none)’)
后来找到了解决办法:
找到工程目录的.git文件夹,打开之后找到config文件,在最后边加上一句话
[user]
email=your email
name=your name
your email 和your name随便写上就行