一. 使用Git bash操作
1. 准备条件与初始化
新建一个文件夹dm-config
cd dm-config
#初始化
git init
#全局配置添加邮箱和用户名
git config --global user.name "jack"
git config --global user.email [email protected]
#配置密钥
https://blog.csdn.net/Wmeihua/article/details/123257553
2. 关联本地仓库和远程仓库
git remote add origin https://gitlab.abc.design/ops/ops.git
拉取远程代码
git clone https://gitlab.abc.design/ops/ops.git
3. 做些增删改查操作
删除操作
git rm -r folder
mkdir dir1
4. 添加并提交
修改完后,执行下面命令
git add . #将任何新的或修改的文件添加到索引
git commit -m '注释信息 ' #提交
git push origin master
如果是新仓库用 git push -u origin master 命令推送
下次再推送就用 git push origin master 命令就可以了
5. 注意
如果是把linux中的文件拷贝到window中,然后使用git命令进行推送时,可能会出现警告如下
warning: in the working copy of ‘...‘, LF will be replaced by CRLF the next time Git touche
解决方法
git config --global core.autocrlf false
参考:https://blog.csdn.net/weixin_55252589/article/details/129017650
二. 在vscode中提交代码
使用Git bash上传代码的操作完成后,可以很简单的使用vscode实现代码上传
共有5个步骤
1、点击 + 号
2、消息框输入 [update]修改内容
3、提交已暂存文件[已署名]
4、拉取
5、推送
截图如下
1.代码做出修改后,点击左侧 源代码管理
2、点击 + 号 ,暂存文件
3、在消息框中输入 [update]修改内容
4、点击 … --提交–提交已暂存文件(已署名)
5、点击 …–拉取,等最下方的 小圈停止转动后,
再点击 推送 ,等到 最下方的小圈停止转动后
然后就可以在gitlab中看到最近做出的修改
原文链接:https://blog.csdn.net/blue__k/article/details/113975303
标签:git,提交,windows,vscode,点击,https,推送,config From: https://www.cnblogs.com/regit/p/17124120.html