当前位置:   article > 正文

关于gitlab添加文件和删除文件_gitlab删除文件夹

gitlab删除文件夹

1.关于gitlab添加文件

添加文件:新建文件test,执行

        git pull --rebase
        git add .
        git commit -m 'add test'
        git push
        或者等价于
        
        git fetch 
        git rebase
        git add .
        git commit -m 'add test'
        git push
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
特殊情况处理:
1. git add . 出错,使用 git rebase --abort重来
2. git commit 出错,使用 git stash保存回退
3. git status //查看当前状态
  • 1
  • 2
  • 3
  • 4

2.设置和清除用户名邮箱

查看git全局配置信息
git config --list --global
清除用户名和邮箱
git config --global --unset user.name
git config --global --unset user.email
设置用户名和邮箱
git config --global user.name "Your Name"
git config --global user.email "your-email@example.com"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3. 撤销commit操作

git reset --soft HEAD^
git commit -m 'add'
  • 1
  • 2

4. 删除文件 test

1.删除名为test文件或者文件夹(本地不删除),需要自己手动删除一下本地

        git fetch
        git rebase
        git rm -r --cached test
        git commit -m 'delete test'
        git push
  2.不使用git rm -r命令删除,直接从本地删除
        
        git fetch
        git rebase
        rm -rf test
        git add .
        git commit -m 'delete test'
        git push
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

5 . 克隆文件

        mkdir gittest
        cd gittest/
        git clone ssh:// ***链接
        
  • 1
  • 2
  • 3
  • 4

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/654161
推荐阅读
相关标签
  

闽ICP备14008679号