赞
踩
GitLab简介:
GitLab是一个基于Git的开源仓库管理系统,提供了一个Web界面的Git存储库管理器,并集成了多种开发工具的功能,如代码审查、问题跟踪、持续集成和持续部署等。GitLab可以在本地服务器上部署,也可以使用其提供的云服务。它广泛应用于软件开发团队,帮助团队成员协作开发、管理和维护项目代码。
cd my-project
git checkout -b <branchname>
要切换到现有分支,请执行以下操作
git checkout <branchname>
- cmd:dir
- 其他操作系统:ls
git status
文件名应为红色。该文件位于您的文件系统中,但 Git 尚未跟踪它。
git status
文件名应为绿色。该文件由 Git 在本地跟踪,但 没有被承诺和推动。
git commit -m "Describe the reason for your commit here"
将您的更改从存储库副本推送到 GitLab。 在此命令中,是指存储库的远程副本。( 替换为分支的名称:origin
<branchname>)
git push origin <branchname>
remote:
Enumerating objects: 9, done.
Counting objects: 100% (9/9), done.
Delta compression using up to 10 threads
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 1.84 KiB | 1.84 MiB/s, done.
Total 5 (delta 3), reused 0 (delta 0), pack-reused 0
remote:
remote: To create a merge request for <branchname>, visit:
remote: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/new?merge_request%5Bsource_branch%5D=<branchname>
remote:
To https://gitlab.com/gitlab-org/gitlab.git
* [new branch] <branchname> -> <branchname>
branch '<branchname>' set up to track 'origin/<branchname>'.
要创建合并请求,请复制从远程发回的链接 存储库并将其粘贴到浏览器窗口中。
- git add <filename>
- git commit --amend
git clone
命令克隆GitLab上的远程仓库到本地。这将创建一个包含远程仓库所有文件和历史记录的本地副本。git clone ***
git pull
命令拉取远程仓库的最新更改,并将其合并到本地仓库。git pull ***
通过GitLab的上传和下载操作,开发团队可以轻松地将代码从本地环境同步到远程仓库,实现多人协作开发、版本控制和代码共享,从而提高开发效率和代码质量。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。