大学生必看之:Git如何提交代码

🏛️ 28365365体育 ⏳ 2025-09-23 07:04:21 👤 admin 👁️ 7228 💎 794
大学生必看之:Git如何提交代码

别人给了你仓库地址后,你可以使用以下任一方式提交代码,然后开始分支管理、代码评审与合并等操作

为了标识身份,建议先完成 Git 全局设置代码语言:javascript代码运行次数:0运行复制git config --global user.name "your name"

git config --global user.email "your email"方法一:克隆仓库代码语言:javascript代码运行次数:0运行复制git clone https://git.com/app/YanChengXu.git

cd YanChengXu

touch README.md

git add README.md

git commit -m "add README"

git push -u origin master方式二:已有文件夹或仓库代码语言:javascript代码运行次数:0运行复制cd existing_folder

git init

git remote add origin https://git.com/app/YanChengXu.git

git add .

git commit

git push -u origin master方式三:导入代码库代码语言:javascript代码运行次数:0运行复制git clone --bare https://git.example.com/your/project.git your_path

cd your_path

git remote set-url origin https://git.example.com/your/project.git your_path

git push origin --tags && git push origin --all​

我正在参与2024腾讯技术创作特训营最新征文,快来和我瓜分大奖!

相关掠夺

365bet体育在线开户
原神鸟蛋哪里购买 鸟蛋购买位置介绍

原神鸟蛋哪里购买 鸟蛋购买位置介绍

🗓️ 08-11 👁️ 5460
365bet在线体育投注网
开启应用锁,保护私密应用

开启应用锁,保护私密应用

🗓️ 09-21 👁️ 3880
365bet在线体育投注网

"蛊"究竟是什么?为何我国历朝历代都要严惩养蛊之人?

🗓️ 07-16 👁️ 8478