年 | 月 | 日 | 时间 | 星期 |
---|---|---|---|---|
2023 | 2 | 15 | 13:24 | 星期三 |
没有的自行注册
# 点击头像旁边的加号创建新的仓库,创建空的仓库
# 默认配置就可以了
# 简易的命令行入门教程:
# Git 全局设置:
git config --global user.name "鹤酒"
git config --global user.email "m13565851164@163.com"
# 创建 git 仓库:
mkdir git_study
cd git_study
git init
touch README.md
git add README.md
git commit -m "first commit"
# 远程添加到代码仓库中
git remote add origin https://gitee.com/crane-wine/git_study.git
# 添加将代码上传到仓库
git push -u origin "master"
# 已有仓库?
cd existing_git_repo
git remote add origin https://gitee.com/crane-wine/git_study.git
git push -u origin "master"
# 远程代码命令
git clone [代码仓库的地址]
# 在拉去分支后你会得到一个所有分支
# 所以在开发时我们不许在克隆后主动切换分支
# 先拉取线上的代码仓库代码进行合并
git pull
# 在进行上传你修改的代码
git push